import express from "express"; import { setupRoutes } from "@/src/routes/routeHandler.route.js"; const port = Number(process.env.PORT); const startApp = async () => { const app = express(); const baseUrl = ""; setupRoutes(baseUrl, app); app.listen(port, () => { console.log(`Listening on port ${port}`); }); }; startApp();