mirror of
https://github.com/whyour/qinglong.git
synced 2025-05-22 14:26:07 +08:00
16 lines
369 B
JavaScript
16 lines
369 B
JavaScript
/**
|
|
* 任务名称
|
|
* name: script name
|
|
* 定时规则
|
|
* cron: 1 9 * * *
|
|
*/
|
|
console.log('test scripts');
|
|
QLAPI.notify('test scripts', 'test desc');
|
|
QLAPI.getEnvs({ searchValue: 'dddd' }).then((x) => {
|
|
console.log('getEnvs', x);
|
|
});
|
|
QLAPI.systemNotify({ title: '123', content: '231' }).then((x) => {
|
|
console.log('systemNotify', x);
|
|
});
|
|
console.log('test desc');
|