2018-11-30 01:24:02 +08:00
|
|
|
import { Meteor } from 'meteor/meteor';
|
|
|
|
import startWatchingExternalVideo from './methods/startWatchingExternalVideo';
|
|
|
|
import stopWatchingExternalVideo from './methods/stopWatchingExternalVideo';
|
2020-03-03 04:51:51 +08:00
|
|
|
import emitExternalVideoEvent from './methods/emitExternalVideoEvent';
|
2018-11-30 01:24:02 +08:00
|
|
|
|
|
|
|
Meteor.methods({
|
|
|
|
startWatchingExternalVideo,
|
|
|
|
stopWatchingExternalVideo,
|
2020-03-03 04:51:51 +08:00
|
|
|
emitExternalVideoEvent,
|
2018-11-30 01:24:02 +08:00
|
|
|
});
|