Execute Liquiloans Transaction Script
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

17 lines
314 B

'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,
};

Powered by TurnKey Linux.