mirror of
https://github.com/whyour/qinglong.git
synced 2025-05-22 22:36:06 +08:00
12 lines
267 B
JavaScript
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');
|