Because friends don't let friends localhost.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
243 B

//go: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")
}