mirror of
https://github.com/knejadshamsi/zele-utils.git
synced 2024-11-14 09:40:26 -05:00
12 lines
199 B
Python
12 lines
199 B
Python
from enum import Enum
|
|
|
|
class City(str, Enum):
|
|
mtl = "mtl"
|
|
|
|
class DBMode(str, Enum):
|
|
drop = "drop"
|
|
append = "append"
|
|
|
|
class RTMode(str, Enum):
|
|
online = "online"
|
|
offline = "offline" |