diff options
author | 2019-02-06 14:38:08 +0100 | |
---|---|---|
committer | 2019-02-06 14:38:08 +0100 | |
commit | 84156da95928cce85332c3fde810fd02e11aed90 (patch) | |
tree | 78484d59f02f0d194c8897db89696849ae3628cd /bot/constants.py | |
parent | Merge pull request #94 from python-discord/precommit (diff) | |
parent | Add precommit install instruction. (diff) |
Merge pull request #99 from python-discord/config-update
Add Lovefest configuration, update project documents
Diffstat (limited to 'bot/constants.py')
-rw-r--r-- | bot/constants.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/bot/constants.py b/bot/constants.py index 4e09b448..63f923d4 100644 --- a/bot/constants.py +++ b/bot/constants.py @@ -72,6 +72,11 @@ class Emojis: check = "\u2611" +class Lovefest: + channel_id = int(environ.get("LOVEFEST_CHANNEL_ID", 542272993192050698)) + role_id = int(environ.get("LOVEFEST_ROLE_ID", 542431903886606399)) + + class Hacktoberfest(NamedTuple): channel_id = 498804484324196362 voice_id = 514420006474219521 |