mirror of
https://github.com/shadoll/scatcher.git
synced 2025-12-20 06:29:59 +00:00
8 lines
107 B
Python
8 lines
107 B
Python
from enum import Enum
|
|
|
|
|
|
class Status(str, Enum):
|
|
ok = "ok"
|
|
success = "success"
|
|
error = "error"
|