This commit is contained in:
root
2020-05-07 09:05:20 +08:00
commit e9d164c703
86 changed files with 11584 additions and 0 deletions

5
notify.js Executable file
View File

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