'use strict'; const cron = require('node-cron'); const routineFetchInvestors = () => { cron.schedule(process.env.SCHEDULER_RULE_EXOTEL_CALL, () => { console.log("running scheduler"); // recordingController.callExotelRecording(); }) }; module.exports = { routineFetchInvestors, };