first commit
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
//go:build windows
|
||||
|
||||
package service
|
||||
|
||||
import "fmt"
|
||||
|
||||
func Install(mode, configPath string) error {
|
||||
return fmt.Errorf("Windows service installation not yet implemented")
|
||||
}
|
||||
|
||||
func Uninstall() error {
|
||||
return fmt.Errorf("Windows service uninstallation not yet implemented")
|
||||
}
|
||||
|
||||
func Status() (string, error) {
|
||||
return "not implemented on Windows", nil
|
||||
}
|
||||
Reference in New Issue
Block a user