Files
ZYZ/game-server/app/services/timeTaskService.ts
2021-01-06 16:06:31 +08:00

14 lines
252 B
TypeScript

/**
* 体力系统
*/
import { scheduleJob, cancelJob } from 'pinus-scheduler';
export async function init() {
scheduleJob("0 31 23 * * *", setPvpSeasonResult, {name:'setPvpSeasonResult'})
}
export async function setPvpSeasonResult() {
}