mirror of
https://github.com/newnius/YAO-scheduler.git
synced 2025-06-08 23:01:55 +00:00
11 lines
93 B
Go
11 lines
93 B
Go
|
package main
|
||
|
|
||
|
type JobPriority int
|
||
|
|
||
|
const (
|
||
|
Low JobPriority = iota
|
||
|
Medium
|
||
|
Hight
|
||
|
Urgent
|
||
|
)
|