2021-11-02 04:40:50 +00:00
|
|
|
//go:build !darwin && !linux && !windows
|
2020-11-05 22:07:01 +00:00
|
|
|
|
|
|
|
package service
|
|
|
|
|
|
|
|
import (
|
|
|
|
"errors"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Install ensures a windows service is active
|
2020-11-05 23:05:47 +00:00
|
|
|
func Install(name, desc string) error {
|
2020-11-05 22:07:01 +00:00
|
|
|
return errors.New("not supported for system services on this platform")
|
|
|
|
}
|