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);