i-darrshan's picture
initial push of the update
8b105ad
raw
history blame contribute delete
269 Bytes
const express = require('express');
const {bodyParser} = require('body-parser');
const router = express.Router();
const {submitContactForm} = require('../controller/contactController');
router.post('/submit-contact-form', submitContactForm);
module.exports = router;