package main
type JobPriority int
const (
Low JobPriority = 1
Medium JobPriority = 25
Hight JobPriority = 50
Urgent JobPriority = 99
)