22 lines
380 B
Go
22 lines
380 B
Go
|
// +build !darwin,!dragonfly,!freebsd,!linux,!netbsd,!openbsd,!solaris
|
||
|
|
||
|
package user
|
||
|
|
||
|
import "io"
|
||
|
|
||
|
func GetPasswdPath() (string, error) {
|
||
|
return "", ErrUnsupported
|
||
|
}
|
||
|
|
||
|
func GetPasswd() (io.ReadCloser, error) {
|
||
|
return nil, ErrUnsupported
|
||
|
}
|
||
|
|
||
|
func GetGroupPath() (string, error) {
|
||
|
return "", ErrUnsupported
|
||
|
}
|
||
|
|
||
|
func GetGroup() (io.ReadCloser, error) {
|
||
|
return nil, ErrUnsupported
|
||
|
}
|