mirror of
https://github.com/lzh-1625/go_process_manager.git
synced 2025-10-05 16:06:51 +08:00
20 lines
227 B
Go
20 lines
227 B
Go
package constants
|
|
|
|
type Condition int
|
|
|
|
const (
|
|
RUNNING Condition = iota
|
|
NOT_RUNNING
|
|
EXCEPTION
|
|
PASS
|
|
)
|
|
|
|
type TaskOperation int
|
|
|
|
const (
|
|
TASK_START TaskOperation = iota
|
|
TASK_STOP
|
|
TASK_START_WAIT_DONE
|
|
TASK_STOP_WAIT_DONE
|
|
)
|