2017-06-22 21:03:27 +08:00
|
|
|
import RedisPubSub from '/imports/startup/server/redis2x';
|
2017-06-21 01:17:37 +08:00
|
|
|
import handleWhiteboardCleared from './handlers/whiteboardCleared';
|
|
|
|
import handleWhiteboardUndo from './handlers/whiteboardUndo';
|
|
|
|
|
|
|
|
RedisPubSub.on('ClearWhiteboardEvtMsg', handleWhiteboardCleared);
|
|
|
|
RedisPubSub.on('UndoWhiteboardEvtMsg', handleWhiteboardUndo);
|