1
0
mirror of https://github.com/newnius/YAO-scheduler.git synced 2025-12-15 16:16:44 +00:00
This commit is contained in:
2019-07-10 20:40:43 +08:00
parent ad1497bfbd
commit c42154696e
10 changed files with 154 additions and 115 deletions

16
src/state.go Normal file
View File

@@ -0,0 +1,16 @@
package main
type State int
const (
// submitted
Created State = iota
// scheduling
Starting
// running
Running
// stopped
Stopped
// finished successfully
Finished
)