2020-04-06 01:00:33 +00:00
|
|
|
package system
|
2019-03-24 21:37:05 +00:00
|
|
|
|
2020-07-05 01:26:36 +00:00
|
|
|
var (
|
2019-12-24 23:30:25 +00:00
|
|
|
// The current version of this software.
|
2019-03-25 01:00:21 +00:00
|
|
|
Version = "0.0.1"
|
2019-03-24 21:37:05 +00:00
|
|
|
)
|
2020-08-11 04:38:42 +00:00
|
|
|
|
|
|
|
const (
|
|
|
|
ProcessOfflineState = "offline"
|
|
|
|
ProcessStartingState = "starting"
|
|
|
|
ProcessRunningState = "running"
|
|
|
|
ProcessStoppingState = "stopping"
|
|
|
|
)
|