mirror of http://git.sairate.top/sairate/doc.git
8 lines
92 B
Python
8 lines
92 B
Python
|
from enum import Enum
|
||
|
|
||
|
|
||
|
class JobStatus(Enum):
|
||
|
WAITING = 1
|
||
|
RUNNING = 2
|
||
|
DONE = 3
|