mirror of
https://github.com/ergochat/ergo.git
synced 2024-11-15 08:29:31 +01:00
6f24082705
Fixes #1733
10 lines
174 B
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
|
|
}
|