blob: a875e8c600d8c08a1a24d9c26ee3df572aece31d [file] [log] [blame]
package utils
import (
"errors"
)
type Utsname struct {
Release [65]byte
}
func uname() (*Utsname, error) {
return nil, errors.New("Kernel version detection is not available on darwin")
}