From db7fbdb95477cf78de9ac5c9e2677af9e5563fd9 Mon Sep 17 00:00:00 2001 From: Luna Mendes Date: Fri, 2 Nov 2018 20:11:23 -0300 Subject: [PATCH] run: load channel_reactions bp --- litecord/blueprints/channel/__init__.py | 1 + run.py | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/litecord/blueprints/channel/__init__.py b/litecord/blueprints/channel/__init__.py index 999ed70..de5839a 100644 --- a/litecord/blueprints/channel/__init__.py +++ b/litecord/blueprints/channel/__init__.py @@ -1 +1,2 @@ from .messages import bp as channel_messages +from .reactions import bp as channel_reactions diff --git a/run.py b/run.py index 1e5c936..27753dd 100644 --- a/run.py +++ b/run.py @@ -23,7 +23,7 @@ from litecord.blueprints.guild import ( ) from litecord.blueprints.channel import ( - channel_messages + channel_messages, channel_reactions ) from litecord.gateway import websocket_handler @@ -73,6 +73,7 @@ bps = { channels: '/channels', channel_messages: '/channels', + channel_reactions: '/channels', webhooks: None, science: None,