tuxbot-bot/tuxbot/cogs/Utils/config.py

13 lines
156 B
Python
Raw Normal View History

2021-03-31 16:08:41 +00:00
from typing import Dict
2020-10-21 22:00:48 +00:00
from structured_config import Structure
2020-09-01 22:08:06 +00:00
2020-11-09 00:18:55 +00:00
HAS_MODELS = False
2020-09-01 22:08:06 +00:00
2020-11-09 00:18:55 +00:00
class UtilsConfig(Structure):
2020-10-21 22:00:48 +00:00
pass
2020-09-01 22:08:06 +00:00
2021-03-31 16:08:41 +00:00
extra: Dict[str, Dict] = {}