moby--moby/getKernelVersion_darwin.go

11 lines
212 B
Go
Raw Normal View History

package docker
import (
"fmt"
2013-05-14 22:37:35 +00:00
"github.com/dotcloud/docker/utils"
)
2013-05-14 22:37:35 +00:00
func getKernelVersion() (*utils.KernelVersionInfo, error) {
return nil, fmt.Errorf("Kernel version detection is not available on darwin")
}