status-go/vendor/github.com/okzk/sdnotify/notify.go

10 lines
174 B
Go

// +build !linux
package sdnotify
// SdNotify sends a specified string to the systemd notification socket.
func SdNotify(state string) error {
// do nothing
return nil
}