mirror of https://github.com/stashapp/stash.git
13 lines
214 B
Go
13 lines
214 B
Go
|
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
|
||
|
)
|