getKernelVersion_darwin.go 170 B

123456789
  1. package docker
  2. import (
  3. "fmt"
  4. )
  5. func getKernelVersion() (*KernelVersionInfo, error) {
  6. return nil, fmt.Errorf("Kernel version detection is not available on darwin")
  7. }