mirror of
https://github.com/adnanh/webhook.git
synced 2025-05-10 07:34:54 +00:00
12 lines
183 B
Go
12 lines
183 B
Go
// +build windows
|
|
|
|
package main
|
|
|
|
import (
|
|
"errors"
|
|
"runtime"
|
|
)
|
|
|
|
func dropPrivileges(uid, gid int) error {
|
|
return errors.New("setuid and setgid not supported on " + runtime.GOOS)
|
|
}
|