buildah/pkg/util/version_windows.go

10 lines
150 B
Go

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