Files
go_process_manager/internal/app/constants/task.go
17689440205 460a1f428b update
2025-01-26 16:43:51 +08:00

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
)