tuxbot-bot/tuxbot/cogs/admin/config.py
2020-09-02 00:08:06 +02:00

19 lines
344 B
Python

from structured_config import Structure, StrField
class AdminConfig(Structure):
dm: str = StrField("")
mentions: str = StrField("")
guilds: str = StrField("")
errors: str = StrField("")
gateway: str = StrField("")
extra = {
'dm': str,
'mentions': str,
'guilds': str,
'errors': str,
'gateway': str,
}