mirror of
https://github.com/lan-tianxiang/JS_TOOL.git
synced 2025-07-13 05:12:35 +08:00
5 lines
157 B
JavaScript
Executable File
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}`); |