UNPKG

dailpad_cti

Version:

11 lines (10 loc) 328 B
/** *@Author Nishant Tiwari *Implementation of routes * **/ const express = require('express'); //import express const router = express.Router(); const dPadwebhook = require('../controllers/dpadwebhook.controller'); router.post('/', dPadwebhook.processEvt); module.exports = router; // export to use in server.js