mirror of
https://github.com/adnanh/webhook.git
synced 2025-05-12 08:34:43 +00:00
10 lines
194 B
Go
10 lines
194 B
Go
//go:build windows
|
|
// +build windows
|
|
|
|
package main
|
|
|
|
import "os/exec"
|
|
|
|
func setUser(cmd *exec.Cmd, username string) {
|
|
// NOOP: Windows doesn't have setuid setgid equivalent to the Unix world.
|
|
}
|