intial commit

This commit is contained in:
2025-12-11 21:35:04 -06:00
parent c6e47f7873
commit c3421a82d6
7 changed files with 1711 additions and 1 deletions

10
backend/app.ts Normal file
View File

@@ -0,0 +1,10 @@
import express from "express";
import { setupRoutes } from "./src/routes/routeHandler.js";
const app = express();
setupRoutes(app);
app.listen(3000, () => {
console.log("Listening on port 3000");
});