19 lines
344 B
Python
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,
|
||
|
}
|