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