qinglong/shell/notify.js
anonymous c8f40a6faa dev
2021-04-07 17:36:17 +08:00

6 lines
162 B
JavaScript

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