mirror of
https://github.com/miaowware/qrm2.git
synced 2025-07-30 20:02:26 -04:00
Templates: added proper comments (#30)
- Added a default value for 'owners_uids' - Added notes on proper types where applicable. - That's pretty much it Fixes #26
This commit is contained in:
parent
959a7609fb
commit
0cc613ef8a
@ -12,4 +12,5 @@ API keys and tokens for the bot.
|
|||||||
---
|
---
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
# The Discord bot token
|
||||||
discord_token = ""
|
discord_token = ""
|
||||||
|
@ -12,6 +12,15 @@ Settings and options for the bot.
|
|||||||
---
|
---
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
# The prefix for the bot (str). Define a list of stings for multiple prefixes.
|
||||||
|
# ie: `["?", "!", "pls "]`
|
||||||
prefix = "?"
|
prefix = "?"
|
||||||
|
|
||||||
|
# Whether the bot should print full stacktraces for normal exceptions: `True`,
|
||||||
|
# or be nice and only print small messages: `False` (the default).
|
||||||
debug = False
|
debug = False
|
||||||
owners_uids = ()
|
|
||||||
|
# A tuple of user IDs that should be considered "bot owners".
|
||||||
|
# * Those users will have full control over the bot.
|
||||||
|
# ! This MUST be a tuple of integers. Single element tuple: `(123,)`
|
||||||
|
owners_uids = (200102491231092736,)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user