mirror of
https://github.com/docker/cli.git
synced 2026-09-24 07:25:07 -05:00
Upstream-commit: f3bab52df4c6b54218ed36ac354ffc3573d31f3b Component: engine
11 lines
170 B
Go
11 lines
170 B
Go
package utils
|
|
|
|
import (
|
|
"errors"
|
|
"syscall"
|
|
)
|
|
|
|
func uname() (*syscall.Utsname, error) {
|
|
return nil, errors.New("Kernel version detection is not available on darwin")
|
|
}
|