This commit is contained in:
17689440205
2025-01-26 16:43:51 +08:00
commit 460a1f428b
99 changed files with 14911 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
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
)