remove prefix

This commit is contained in:
smfahim25 2025-03-19 11:45:27 +06:00
parent e5132b2270
commit be29aed2a2

View file

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