Add logic to notify service manager when start up is completed

This commit is contained in:
Remy D. Farley 2024-06-15 14:40:39 +00:00
parent fec96a38a4
commit 7878bb938e
5 changed files with 67 additions and 0 deletions

View file

@ -0,0 +1,8 @@
//go:build !linux
// +build !linux
package main
func notifyStartupCompleted() (bool, error) {
return false, nil
}