mirror of
https://github.com/AdguardTeam/AdGuardHome.git
synced 2024-11-21 20:45:33 +03:00
14 lines
327 B
Go
14 lines
327 B
Go
//go:build windows
|
|
|
|
package aghos
|
|
|
|
// TODO(a.garipov): Think of a way to implement these. Perhaps by using
|
|
// syscall.CreateProcessAsUser or something from the golang.org/x/sys module.
|
|
|
|
func setGroup(_ string) (err error) {
|
|
return Unsupported("setgid")
|
|
}
|
|
|
|
func setUser(_ string) (err error) {
|
|
return Unsupported("setuid")
|
|
}
|