Pulse/cmd/pulse-host-agent/service_stub.go
rcourtman 2fe7bb6141 style: fix gofmt formatting inconsistencies
Run gofmt -w to fix tab/space inconsistencies across 33 files.
2025-11-26 23:44:36 +00:00

19 lines
446 B
Go

//go:build !windows
// +build !windows
package main
import (
"github.com/rcourtman/pulse-go-rewrite/internal/hostagent"
"github.com/rs/zerolog"
)
// runAsWindowsService is a no-op on non-Windows platforms
func runAsWindowsService(cfg hostagent.Config, logger zerolog.Logger) error {
return nil
}
// runServiceDebug is a no-op on non-Windows platforms
func runServiceDebug(cfg hostagent.Config, logger zerolog.Logger) error {
return nil
}