wow-token-app-bot/token_bot/token_database/region.py
Emily Doherty c78ced85ca Very Initial MVP
There is so much more to do, but I think it is time to commit this to VCS
2024-11-30 03:27:32 -08:00

8 lines
104 B
Python

from enum import Enum
class Region(str, Enum):
US = 'us'
EU = 'eu'
KR = 'kr'
TW = 'tw'