Files
kato e74f74bc4e fix(startup): make watchdog task keep agent alive
- Use Task Scheduler XML instead of /TR
- Run -ensure agent in-process, not child
- Add console close and panic protection
- Guard nil event channels after stop
- Add non-Windows stubs for startup/mutex
2026-09-01 23:12:22 +03:00

14 lines
190 B
Go

//go:build !windows
package instance
type Guard struct{}
func Acquire() (*Guard, error) {
return &Guard{}, nil
}
func AlreadyRunning() bool { return false }
func (g *Guard) Close() {}