8 lines
101 B
Go
8 lines
101 B
Go
// +build !linux
|
|
|
|
package sdnotify
|
|
|
|
func SdNotify(state string) error {
|
|
// do nothing
|
|
return nil
|
|
}
|