qinglong/shell/notify.js
2022-02-19 13:08:14 +08:00

6 lines
168 B
JavaScript

const notify = require('/ql/data/scripts/sendNotify.js');
const title = process.argv[2];
const content = process.argv[3];
notify.sendNotify(`${title}`, `${content}`);