diff options
Diffstat (limited to 'bot/constants.py')
| -rw-r--r-- | bot/constants.py | 19 | 
1 files changed, 19 insertions, 0 deletions
diff --git a/bot/constants.py b/bot/constants.py index 4294b8e1..6020f1c1 100644 --- a/bot/constants.py +++ b/bot/constants.py @@ -66,8 +66,27 @@ class Roles(NamedTuple):      rockstars = 458226413825294336 +class Colours: +    soft_red = 0xcd6d6d +    soft_green = 0x68c290 + + +class Emojis: +    star = "\u2B50" +    christmas_tree = u"\U0001F384" + +  class Tokens(NamedTuple):      giphy = environ.get("GIPHY_TOKEN") +    aoc_session_cookie = environ.get("AOC_SESSION_COOKIE") + + +class AdventOfCode: +    leaderboard_cache_age_threshold_seconds = 3600 +    leaderboard_id = 363275 +    leaderboard_join_code = "363275-442b6939" +    leaderboard_max_displayed_members = 10 +    year = 2018  bot = SeasonalBot(command_prefix=Client.prefix)  |