Files
js_tool_clone/notify.js
root e9d164c703 .
2021-07-05 01:09:48 -04:00

5 lines
157 B
JavaScript
Executable File

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