1
0
mirror of https://github.com/newnius/YAO-scheduler.git synced 2025-06-08 14:51:55 +00:00
YAO-scheduler/src/job_priority.go

11 lines
145 B
Go
Raw Normal View History

2019-07-12 06:58:16 +00:00
package main
type JobPriority int
const (
2019-07-12 07:12:51 +00:00
Low JobPriority = 1
Medium JobPriority = 25
Hight JobPriority = 50
Urgent JobPriority = 99
2019-07-12 06:58:16 +00:00
)