10 lines
173 B
Go
10 lines
173 B
Go
//go:build windows
|
|
// +build windows
|
|
|
|
package main
|
|
|
|
// Windows doesn't support UID and GID, so we need to skip this.
|
|
func dropUserPrivileges(int, int) error {
|
|
return nil
|
|
}
|