mirror of
https://github.com/newnius/YAO-scheduler.git
synced 2025-06-08 14:51:55 +00:00
17 lines
179 B
Go
17 lines
179 B
Go
package main
|
|
|
|
type State int
|
|
|
|
const (
|
|
// submitted
|
|
Created State = iota
|
|
// scheduling
|
|
Starting
|
|
// running
|
|
Running
|
|
// stopped
|
|
Stopped
|
|
// finished successfully
|
|
Finished
|
|
)
|