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

19 lines
344 B
Python
Raw Normal View History

2020-09-02 00:08:06 +02:00
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,
2020-09-02 00:08:06 +02:00
}