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

View File

@@ -0,0 +1,10 @@
import type { Express, Response } from "express";
export const setupRoutes = (app: Express) => {
app.get("/", (_, res: Response) => {
res.status(200).json({
success: true,
message: "This is just an example of this working",
});
});
};