Files
Pulse/cmd/pulse-agent/service_stub.go
rcourtman 94259a45da Add Windows service support to unified agent
Port Windows SCM integration from pulse-host-agent to pulse-agent,
enabling the unified agent to run as a Windows service with proper
start/stop handling and event logging.

Related to #766
2025-11-27 17:00:03 +00:00

13 lines
221 B
Go

//go:build !windows
package main
import (
"github.com/rs/zerolog"
)
// runAsWindowsService is a no-op on non-Windows platforms
func runAsWindowsService(_ Config, _ zerolog.Logger) (bool, error) {
return false, nil
}