mirror of https://gitlab.com/litecord/litecord.git
run: load channel_reactions bp
This commit is contained in:
parent
1db27a811f
commit
db7fbdb954
|
|
@ -1 +1,2 @@
|
||||||
from .messages import bp as channel_messages
|
from .messages import bp as channel_messages
|
||||||
|
from .reactions import bp as channel_reactions
|
||||||
|
|
|
||||||
3
run.py
3
run.py
|
|
@ -23,7 +23,7 @@ from litecord.blueprints.guild import (
|
||||||
)
|
)
|
||||||
|
|
||||||
from litecord.blueprints.channel import (
|
from litecord.blueprints.channel import (
|
||||||
channel_messages
|
channel_messages, channel_reactions
|
||||||
)
|
)
|
||||||
|
|
||||||
from litecord.gateway import websocket_handler
|
from litecord.gateway import websocket_handler
|
||||||
|
|
@ -73,6 +73,7 @@ bps = {
|
||||||
|
|
||||||
channels: '/channels',
|
channels: '/channels',
|
||||||
channel_messages: '/channels',
|
channel_messages: '/channels',
|
||||||
|
channel_reactions: '/channels',
|
||||||
|
|
||||||
webhooks: None,
|
webhooks: None,
|
||||||
science: None,
|
science: None,
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue