From be29aed2a2739ba21055ea5991777ca94783b045 Mon Sep 17 00:00:00 2001 From: smfahim25 Date: Wed, 19 Mar 2025 11:45:27 +0600 Subject: [PATCH] remove prefix --- src/app.ts | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/src/app.ts b/src/app.ts index 6615eec..4fb4277 100644 --- a/src/app.ts +++ b/src/app.ts @@ -26,12 +26,7 @@ const app = new Elysia() }) ) .use(swagger()) - .get("/test", () => "Hello World", { - detail: { - tags: ["Default"], - summary: "Test endpoint", - }, - }) + .get("/test", () => "Hello World", {}) .use(api) .listen(ENV.SERVER_PORT);