buildah/pkg/util/version_windows.go

11 lines
151 B
Go

package util
import (
"errors"
)
func ReadKernelVersion() (string, error) {
return "", errors.New("readKernelVersion not supported on windows")
}