From a501adc3725fcaf8ac2c6a3cfbe811677b46c37c Mon Sep 17 00:00:00 2001 From: Akhilesh Chandak Date: Mon, 11 Dec 2023 17:43:42 +0530 Subject: [PATCH] add controller --- controller/fetchInvestorData.js | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 controller/fetchInvestorData.js diff --git a/controller/fetchInvestorData.js b/controller/fetchInvestorData.js new file mode 100644 index 0000000..2679803 --- /dev/null +++ b/controller/fetchInvestorData.js @@ -0,0 +1,16 @@ +'use strict' + +const request = require("request"); +const constants = require('../utils/consts'); +const db = require('../utils/db_config'); + + +const createLiquiloanInvestor = (req, res) => { + + res.send("in process"); +} + + +module.exports = { + createLiquiloanInvestor +} \ No newline at end of file