Metatron_Admin_Backend/routes/lighthouse.routes.js
2025-10-09 10:10:50 +05:30

9 lines
190 B
JavaScript

import express from 'express';
import { runAudit } from '../controllers/lighthouseController.js';
const router = express.Router();
router.post('/audit', runAudit);
export default router;