mirror of
https://github.com/foxcpp/maddy.git
synced 2025-04-04 13:37:41 +03:00
15 lines
220 B
Go
15 lines
220 B
Go
//+build !linux
|
|
|
|
package maddy
|
|
|
|
type SDStatus string
|
|
|
|
const (
|
|
SDReady = "READY=1"
|
|
SDReloading = "RELOADING=1"
|
|
SDStopping = "STOPPING=1"
|
|
)
|
|
|
|
func systemdStatus(SDStatus, string) {}
|
|
|
|
func systemdStatusErr(error) {}
|