7 lines
154 B
JavaScript
7 lines
154 B
JavaScript
"use strict";
|
|
const { checkUpNotify } = require("../services/notificationService");
|
|
//For testing pursposes
|
|
(async () => {
|
|
await checkUpNotify();
|
|
})();
|