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.
 
 
 

21 lines
598 B

const express = require('express');
const { route } = require("express/lib/application");
const { getAllInvestorId } = require('../controller/getInvestmentSummary');
const { fetchInvestorDetails } = require('../controller/getAllInvestor');
const { getReqAndInvId } = require('../controller/getTransactionById');
const router = express.Router();
router.get("/allInvestor", (req, res) => {
fetchInvestorDetails()
})
router.get("/getInvestmentSummary", (req, res) => {
getAllInvestorId()
})
router.get("/getTransactionId", (req, res) => {
getReqAndInvId()
})
module.exports = router;

Powered by TurnKey Linux.