aboutsummaryrefslogtreecommitdiffstats
path: root/bot/constants.py
diff options
context:
space:
mode:
authorGravatar Leon Sandøy <[email protected]>2019-12-10 23:38:06 +0100
committerGravatar GitHub <[email protected]>2019-12-10 23:38:06 +0100
commita463ab08c8ba329c0a282ad6e724455544c26690 (patch)
tree9648fdf6eef49fde27cb21d9c58b305b3a357564 /bot/constants.py
parentMerge pull request #328 from python-discord/aoc-announcement-mention-fix (diff)
parentMerge branch 'bookmark' of https://github.com/AG4lyf/seasonalbot into bookmark (diff)
Merge pull request #327 from AG4lyf/bookmark
[Feature] `.bm` `.pin` bookmarks/personal-pins
Diffstat (limited to 'bot/constants.py')
-rw-r--r--bot/constants.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/bot/constants.py b/bot/constants.py
index ce650b80..eca4f67b 100644
--- a/bot/constants.py
+++ b/bot/constants.py
@@ -4,6 +4,7 @@ from typing import NamedTuple
from datetime import datetime
__all__ = (
+ "bookmark_icon_url",
"AdventOfCode", "Channels", "Client", "Colours", "Emojis", "Hacktoberfest", "Roles", "Tokens",
"WHITELISTED_CHANNELS", "STAFF_ROLES", "MODERATION_ROLES",
"POSITIVE_REPLIES", "NEGATIVE_REPLIES", "ERROR_REPLIES",
@@ -11,6 +12,11 @@ __all__ = (
log = logging.getLogger(__name__)
+bookmark_icon_url = (
+ "https://images-ext-2.discordapp.net/external/zl4oDwcmxUILY7sD9ZWE2fU5R7n6QcxEmPYSE5eddbg/"
+ "%3Fv%3D1/https/cdn.discordapp.com/emojis/654080405988966419.png?width=20&height=20"
+)
+
class AdventOfCode:
leaderboard_cache_age_threshold_seconds = 3600