aeroEcho/src/routes/index.js
Roozbeh Karimi 85fdbe085a socket added
2025-10-01 20:14:07 -04:00

15 lines
244 B
JavaScript

const express = require("express");
const router = express.Router();
const routes = {
flights: require("./flights"),
};
router.use(async (req, res, next) => {
next();
});
router.use("/flights", routes.flights);
module.exports = router;