mirror of
https://github.com/containers/podman.git
synced 2025-12-01 02:27:13 +08:00
10 lines
150 B
Go
10 lines
150 B
Go
package util
|
|
|
|
import (
|
|
"errors"
|
|
)
|
|
|
|
func ReadKernelVersion() (string, error) {
|
|
return "", errors.New("readKernelVersion not supported on windows")
|
|
}
|