type media videos

This commit is contained in:
2025-05-27 15:33:47 +02:00
parent 1b110ac316
commit a7abf60b1b
93 changed files with 12353 additions and 17 deletions
@@ -0,0 +1,15 @@
const path = require('path');
const notifier = require('node-notifier');
function notify(title, body) {
const icon = path.join(__dirname, 'icon.png');
notifier.notify({
title: title,
message: body,
icon: icon
});
console.log(`${title}, ${body}`);
}
module.exports = notify;