blob: db27877d96595a773014e87ae810c6a457837052 (
plain)
1
2
3
4
5
6
7
8
9
|
// +build windows
package utils
import "github.com/pkg/errors"
func RunUnderSystemdScope(pid int, slice string, unitName string) error {
return errors.New("not implemented for windows")
}
|