36 lines
938 B
Python
36 lines
938 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": {
|
|
"type": str,
|
|
"description": "URL of the webhook used for send DMs "
|
|
"received and sent by the bot",
|
|
},
|
|
"mentions": {
|
|
"type": str,
|
|
"description": "URL of the webhook used for send Mentions "
|
|
"received by the bot",
|
|
},
|
|
"guilds": {
|
|
"type": str,
|
|
"description": "URL of the webhook used for send guilds where the "
|
|
"bot is added or removed",
|
|
},
|
|
"errors": {
|
|
"type": str,
|
|
"description": "URL of the webhook used for send errors in the bot",
|
|
},
|
|
"gateway": {
|
|
"type": str,
|
|
"description": "URL of the webhook used for send gateway information",
|
|
},
|
|
}
|