2016-11-19 01:35:28 +08:00
|
|
|
import { Meteor } from 'meteor/meteor';
|
2017-04-20 02:27:00 +08:00
|
|
|
import undoAnnotation from './methods/undoAnnotation';
|
2017-04-22 02:01:52 +08:00
|
|
|
import clearWhiteboard from './methods/clearWhiteboard';
|
2017-05-02 05:34:24 +08:00
|
|
|
import sendAnnotation from './methods/sendAnnotation';
|
2016-11-19 01:35:28 +08:00
|
|
|
|
|
|
|
Meteor.methods({
|
2017-04-20 02:27:00 +08:00
|
|
|
undoAnnotation,
|
2017-04-22 02:01:52 +08:00
|
|
|
clearWhiteboard,
|
2017-05-02 05:34:24 +08:00
|
|
|
sendAnnotation
|
2016-11-19 01:35:28 +08:00
|
|
|
});
|