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:
0x5c 2019-10-07 12:17:52 -04:00 committed by Abigail Gold
parent 959a7609fb
commit 0cc613ef8a
2 changed files with 11 additions and 1 deletions

View File

@ -12,4 +12,5 @@ API keys and tokens for the bot.
---
"""
# The Discord bot token
discord_token = ""

View File

@ -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 = "?"
# Whether the bot should print full stacktraces for normal exceptions: `True`,
# or be nice and only print small messages: `False` (the default).
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,)