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