mirror of
https://github.com/xxjwxc/public.git
synced 2025-09-26 20:01:19 +08:00
13 lines
194 B
Go
13 lines
194 B
Go
package server
|
|
|
|
const (
|
|
Stopped = 1
|
|
StartPending = 2
|
|
StopPending = 3
|
|
Running = 4
|
|
ContinuePending = 5
|
|
PausePending = 6
|
|
Paused = 7
|
|
NOTFIND = 8
|
|
)
|