diff options
author | 2020-09-21 19:55:35 +0200 | |
---|---|---|
committer | 2020-09-21 20:18:19 +0200 | |
commit | da13946c4d05b03d0e3df79befb855d6898ba83c (patch) | |
tree | 9d6d0dc638610b3f235966c93da5aa4b05d808a7 /bot | |
parent | Add extensions.py file (diff) |
Update constants.py to include URLs
- Includes bot_avatar and github_bot_repo URLs
- Necessary for extensions.py cog to work
Diffstat (limited to 'bot')
-rw-r--r-- | bot/constants.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/bot/constants.py b/bot/constants.py index fa428a61..07b040fc 100644 --- a/bot/constants.py +++ b/bot/constants.py @@ -24,6 +24,7 @@ __all__ = ( "ERROR_REPLIES", "NEGATIVE_REPLIES", "POSITIVE_REPLIES", + "URLs" ) log = logging.getLogger(__name__) @@ -177,6 +178,12 @@ class Roles(NamedTuple): verified = 352427296948486144 helpers = 267630620367257601 rockstars = 458226413825294336 + core_developers = 757650781385261197 # Change this value for local test servers. + + +class URLs: + bot_avatar = "https://raw.githubusercontent.com/discord-python/branding/master/logos/logo_circle/logo_circle.png" + github_bot_repo = "https://github.com/python-discord/bot" class Tokens(NamedTuple): |