mirror of
https://github.com/docker/cli.git
synced 2026-08-30 18:14:19 -05:00
Upstream-commit: 2e69e1727b4d5698a90c24c5800eecd5401dc319 Component: engine
11 lines
212 B
Go
11 lines
212 B
Go
package docker
|
|
|
|
import (
|
|
"fmt"
|
|
"github.com/dotcloud/docker/utils"
|
|
)
|
|
|
|
func getKernelVersion() (*utils.KernelVersionInfo, error) {
|
|
return nil, fmt.Errorf("Kernel version detection is not available on darwin")
|
|
}
|