7 lines
341 B
JavaScript
7 lines
341 B
JavaScript
|
import RedisPubSub from '/imports/startup/server/redis';
|
||
|
import handleGroupChatsMsgs from './handlers/groupChatsMsgs';
|
||
|
import handleGroupChatMsgBroadcast from './handlers/groupChatMsgBroadcast';
|
||
|
|
||
|
RedisPubSub.on('GetGroupChatMsgsRespMsg', handleGroupChatsMsgs);
|
||
|
RedisPubSub.on('GroupChatMessageBroadcastEvtMsg', handleGroupChatMsgBroadcast);
|