mirror of
https://github.com/Tzahi12345/YoutubeDL-Material.git
synced 2026-03-11 15:20:56 +03:00
13 lines
315 B
JavaScript
13 lines
315 B
JavaScript
const utils = require('./utils');
|
|
const logger = require('./logger');
|
|
const db_api = require('./db');
|
|
|
|
exports.sendNotification = async () => {
|
|
// TODO: hook into third party service
|
|
|
|
const notification = {}
|
|
|
|
await db_api.insertRecordIntoTable('notifications', notification);
|
|
|
|
return notification;
|
|
} |