Attempt to notify systemd of service readiness on linux (#929)

This commit is contained in:
Nate Brown
2023-07-24 11:30:18 -05:00
committed by GitHub
parent f5db03c834
commit 1e3c155896
6 changed files with 59 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
//go:build !linux
// +build !linux
package main
import "github.com/sirupsen/logrus"
func notifyReady(_ *logrus.Logger) {
// No init service to notify
}