qinglong/sample/ql_sample.js
2024-05-05 19:47:54 +08:00

12 lines
267 B
JavaScript

/**
* 任务名称
* name: script name
* 定时规则
* cron: 1 9 * * *
*/
const { sendNotify } = require('./sendNotify.js'); // commonjs
// import { sendNotify } from './sendNotify'; // es6
console.log('test scripts');
sendNotify('test scripts', 'test desc');