Files
bamboo/app/cms/schedule/test2.js
T
2022-06-03 15:18:47 +08:00

13 lines
180 B
JavaScript

'use strict';
// 定时任务
module.exports = {
time: {
cron: '0/5 * * * * ?',
// every: 2000,
// limit: 100,
},
fun: (app) => {
console.log("test2",new Date());
}
}