first commit

This commit is contained in:
Stefan Hacker
2026-02-18 22:01:54 +01:00
commit 5464e553b3
35 changed files with 5432 additions and 0 deletions
+17
View File
@@ -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
}