mirror of
https://github.com/stashapp/stash.git
synced 2025-12-06 08:26:00 +01:00
13 lines
No EOL
214 B
Go
13 lines
No EOL
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
|
|
) |