i-darrshan's picture
initial update of the vite site
62c3fe0
raw
history blame contribute delete
332 Bytes
// routes/subscriptionRoutes.js
const express = require('express');
const { handleSubscriptionEmail } = require('../controller/subscriptionController'); // Import controller
const router = express.Router();
// POST route for subscription email
router.post('/subscription-email', handleSubscriptionEmail);
module.exports = router;