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';
|
2022-02-02 03:05:02 +08:00
|
|
|
import setTrack from './methods/setTrack';
|
2023-05-03 04:46:33 +08:00
|
|
|
import timerEnded from './methods/endTimer';
|
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,
|
2022-02-02 03:05:02 +08:00
|
|
|
setTrack,
|
2021-09-14 02:16:07 +08:00
|
|
|
timerEnded,
|
2023-05-11 04:03:20 +08:00
|
|
|
});
|