mirror of
https://github.com/status-im/status-go.git
synced 2025-01-09 14:16:21 +00:00
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
|
|
}
|