mirror of
https://github.com/yggdrasil-network/yggdrasil-go.git
synced 2024-11-23 10:05:17 +00:00
11 lines
313 B
Go
11 lines
313 B
Go
|
//go:build !aix && !darwin && !dragonfly && !freebsd && !linux && !netbsd && !openbsd && !solaris
|
||
|
// +build !aix,!darwin,!dragonfly,!freebsd,!linux,!netbsd,!openbsd,!solaris
|
||
|
|
||
|
package main
|
||
|
|
||
|
import "errors"
|
||
|
|
||
|
func chuser(user string) error {
|
||
|
return errors.New("setting uid/gid is not supported on this platform")
|
||
|
}
|