intial commit
This commit is contained in:
10
backend/app.ts
Normal file
10
backend/app.ts
Normal 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");
|
||||
});
|
||||
Reference in New Issue
Block a user