2020-11-05 15:07:01 -07:00

13 lines
219 B
Go

// +build !darwin,!linux,!windows
package service
import (
"errors"
)
// Install ensures a windows service is active
func Install() error {
return errors.New("not supported for system services on this platform")
}