Files
usb-server/internal/service/service_windows.go
T
Stefan Hacker 5464e553b3 first commit
2026-02-18 22:01:54 +01:00

18 lines
348 B
Go

//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
}