2017-11-20 06:03:27 +08:00
|
|
|
// +build !linux
|
|
|
|
|
|
|
|
package sdnotify
|
|
|
|
|
2018-08-20 19:32:46 +08:00
|
|
|
// SdNotify sends a specified string to the systemd notification socket.
|
2017-11-20 06:03:27 +08:00
|
|
|
func SdNotify(state string) error {
|
|
|
|
// do nothing
|
|
|
|
return nil
|
|
|
|
}
|