9 lines
469 B
JavaScript
9 lines
469 B
JavaScript
import RedisPubSub from '/imports/startup/server/redis';
|
|
import handleCaptionHistory from './handlers/captionHistory';
|
|
import handleCaptionUpdate from './handlers/captionUpdate';
|
|
import handleCaptionOwnerUpdate from './handlers/captionOwnerUpdate';
|
|
|
|
RedisPubSub.on('send_caption_history_reply_message', handleCaptionHistory);
|
|
RedisPubSub.on('edit_caption_history_message', handleCaptionUpdate);
|
|
RedisPubSub.on('update_caption_owner_message', handleCaptionOwnerUpdate);
|