diff --git a/src/app.ts b/src/app.ts index a757a59..b6d6f10 100644 --- a/src/app.ts +++ b/src/app.ts @@ -28,7 +28,7 @@ const app = new Elysia() }) ) .get("/test", () => "Hello World", {}) - .post("/test-post", ({ body }) => { + .post("/api/test-post", ({ body }) => { console.log("Received POST with body:", body); return { success: true, received: body }; })