mirror of
https://github.com/docker/docs.git
synced 2026-03-27 14:28:47 +07:00
10 lines
170 B
Go
10 lines
170 B
Go
package docker
|
|
|
|
import (
|
|
"fmt"
|
|
)
|
|
|
|
func getKernelVersion() (*KernelVersionInfo, error) {
|
|
return nil, fmt.Errorf("Kernel version detection is not available on darwin")
|
|
}
|