15 lines
354 B
Go
15 lines
354 B
Go
//go:build !linux
|
|
// +build !linux
|
|
|
|
package utils
|
|
|
|
import "errors"
|
|
|
|
func (m *ServiceManager) Install(exePath string, args []string) error {
|
|
return errors.New("service install is only supported on linux in this version")
|
|
}
|
|
|
|
func (m *ServiceManager) Uninstall() error {
|
|
return errors.New("service uninstall is only supported on linux in this version")
|
|
}
|