mirror of
https://github.com/foxcpp/maddy.git
synced 2026-02-09 17:23:11 +02:00
16 lines
220 B
Go
16 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) {}
|