Logging better?

This commit is contained in:
Owen
2025-07-23 21:59:05 -07:00
parent 0807b72fe0
commit 5fedc2bef1
6 changed files with 308 additions and 45 deletions

View File

@@ -27,11 +27,15 @@ func getServiceStatus() (string, error) {
return "", fmt.Errorf("service management is only available on Windows")
}
func debugService() error {
return fmt.Errorf("debug service is only available on Windows")
}
func isWindowsService() bool {
return false
}
func runService(name string, isDebug bool) {
func runService(name string, isDebug bool, args []string) {
// No-op on non-Windows platforms
}