runabot/RUNA/Enum.py
tmddn3070 6693186d40 FEAT: Inital commit
This Commit Contained Rebrand Patches
2024-03-17 09:42:36 +09:00

17 lines
215 B
Python

from enum import Enum
class STATUS(Enum):
SUCCESS = 0
ERROR = 1
NOT_AVAILABLE = 2
NOT_FOUND = 3
NOT_AUTHORIZED = 4
NOT_ALLOWED = 5
def __str__(self):
return str(self.value)