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.
 
 
 

20 lines
535 B

const express = require('express');
const { route } = require("express/lib/application");
const { createLiquiloanInvestor } = require('../controller/getInvestmentSumarry');
const { fetchInvestorDetails } = require('../controller/getAllInvestor');
const router = express.Router();
router.get("/api/v1", (req, res) => {
// res.send("HELLO I M A NEW COURSE NODE.JS")
createLiquiloanInvestor()
})
router.get("/api/all_investor", (req, res) => {
fetchInvestorDetails()
})
/* GET users listing. */
module.exports = router;

Powered by TurnKey Linux.