mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-02-05 15:09:40 +03:00
8 lines
166 B
Python
8 lines
166 B
Python
from enum import Enum
|
|
|
|
class TaskStatus(Enum):
|
|
New = "New"
|
|
Runnable = "Runnable"
|
|
Running = "Running"
|
|
Blocked = "Blocked"
|
|
Terminated = "Terminated" |