You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- from enum import Enum, unique
-
-
- # 分析状态枚举
- @unique
- class AnalysisStatus(Enum):
-
- # 等待
- WAITING = "waiting"
-
- # 分析中
- RUNNING = "running"
-
- # 分析完成
- SUCCESS = "success"
-
- # 超时
- TIMEOUT = "timeout"
-
- # 失败
- FAILED = "failed"
|