| Current Path : /var/node/inatote/Inatote-Backend/node_modules/node-cron/src/ |
| Current File : /var/node/inatote/Inatote-Backend/node_modules/node-cron/src/storage.js |
module.exports = (() => {
if(!global.scheduledTasks){
global.scheduledTasks = [];
}
return {
save: (task) => {
global.scheduledTasks.push(task);
},
getTasks: () => {
return global.scheduledTasks;
}
};
})();