mirror of
https://github.com/mindverse/Second-Me.git
synced 2026-07-22 07:33:28 +00:00
9 lines
160 B
Python
9 lines
160 B
Python
from enum import Enum
|
|
|
|
|
|
class ProcessStatus(Enum):
|
|
"""Process status enum"""
|
|
|
|
INITIALIZED = "INITIALIZED"
|
|
SUCCESS = "SUCCESS"
|
|
FAILED = "FAILED"
|