stash/internal/manager/job_status.go

13 lines
214 B
Go
Raw Normal View History

2019-02-09 12:30:49 +00:00
package manager
type JobStatus int
const (
Idle JobStatus = 0
Import JobStatus = 1
Export JobStatus = 2
Scan JobStatus = 3
Generate JobStatus = 4
Clean JobStatus = 5
Scrape JobStatus = 6
)