2023-05-11 04:03:20 +08:00
|
|
|
import { Meteor } from 'meteor/meteor';
|
|
|
|
import activateTimer from './methods/activateTimer';
|
|
|
|
import deactivateTimer from './methods/deactivateTimer';
|
|
|
|
import resetTimer from './methods/resetTimer';
|
|
|
|
import startTimer from './methods/startTimer';
|
|
|
|
import stopTimer from './methods/stopTimer';
|
2020-04-26 03:03:35 +08:00
|
|
|
import switchTimer from './methods/switchTimer';
|
|
|
|
import setTimer from './methods/setTimer';
|
2020-06-11 01:29:30 +08:00
|
|
|
import getServerTime from './methods/getServerTime';
|
2021-09-03 20:44:16 +08:00
|
|
|
import setMusic from './methods/setMusic';
|
2021-09-14 02:16:07 +08:00
|
|
|
import timerEnded from './methods/timerEnded';
|
2023-05-11 04:03:20 +08:00
|
|
|
|
|
|
|
Meteor.methods({
|
|
|
|
activateTimer,
|
|
|
|
deactivateTimer,
|
|
|
|
resetTimer,
|
|
|
|
startTimer,
|
|
|
|
stopTimer,
|
2020-04-26 03:03:35 +08:00
|
|
|
switchTimer,
|
|
|
|
setTimer,
|
2020-06-11 01:29:30 +08:00
|
|
|
getServerTime,
|
2021-09-03 20:44:16 +08:00
|
|
|
setMusic,
|
2021-09-14 02:16:07 +08:00
|
|
|
timerEnded,
|
2023-05-11 04:03:20 +08:00
|
|
|
});
|