mirror of
https://github.com/newnius/YAO-scheduler.git
synced 2025-06-08 14:51:55 +00:00
11 lines
145 B
Go
11 lines
145 B
Go
package main
|
|
|
|
type JobPriority int
|
|
|
|
const (
|
|
Low JobPriority = 1
|
|
Medium JobPriority = 25
|
|
Hight JobPriority = 50
|
|
Urgent JobPriority = 99
|
|
)
|