16 lines
286 B
Go
16 lines
286 B
Go
package main
|
|
|
|
const (
|
|
Stopped = "Stopped"
|
|
Starting = "Starting"
|
|
Started = "Started"
|
|
Stopping = "Stopping"
|
|
)
|
|
|
|
const (
|
|
EmptyConfiguration = "EmptyConfiguration"
|
|
StartCommandServer = "StartCommandServer"
|
|
CreateService = "CreateService"
|
|
StartService = "StartService"
|
|
)
|