aboutsummaryrefslogtreecommitdiffstats
path: root/bot/constants.py
diff options
context:
space:
mode:
authorGravatar ks129 <[email protected]>2021-04-30 12:14:00 +0300
committerGravatar GitHub <[email protected]>2021-04-30 12:14:00 +0300
commit109692e5b0efb181152ce5743d11fbea64171c9c (patch)
treeb20a8cc425d98d2f4b2ffc11ac1fe665b62b8192 /bot/constants.py
parentAdd non-underscore aliases for lazy people like me :) (diff)
parentMerge pull request #709 from chincholikarsalil/fix-grammatical-error (diff)
Merge branch 'main' into Enforce-image-processing-concurrency
Diffstat (limited to 'bot/constants.py')
-rw-r--r--bot/constants.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/bot/constants.py b/bot/constants.py
index f390d8ce..6cbfa8db 100644
--- a/bot/constants.py
+++ b/bot/constants.py
@@ -8,6 +8,7 @@ from typing import Dict, NamedTuple
__all__ = (
"AdventOfCode",
"Branding",
+ "Cats",
"Channels",
"Categories",
"Client",
@@ -93,6 +94,10 @@ class Branding:
cycle_frequency = int(environ.get("CYCLE_FREQUENCY", 3)) # 0: never, 1: every day, 2: every other day, ...
+class Cats:
+ cats = ["ᓚᘏᗢ", "ᘡᘏᗢ", "🐈", "ᓕᘏᗢ", "ᓇᘏᗢ", "ᓂᘏᗢ", "ᘣᘏᗢ", "ᕦᘏᗢ", "ᕂᘏᗢ"]
+
+
class Channels(NamedTuple):
advent_of_code = int(environ.get("AOC_CHANNEL_ID", 782715290437943306))
advent_of_code_commands = int(environ.get("AOC_COMMANDS_CHANNEL_ID", 607247579608121354))