diff --git a/src/index.ts b/src/index.ts index bb3bbd4..fe06508 100644 --- a/src/index.ts +++ b/src/index.ts @@ -9,7 +9,7 @@ const app = new Elysia() .use(rateLimit({ max: 2 })) - + .get("/", () => "Hello Elysia") .post("/", async ({body}) => { const response = await fetch(url, { method: "POST",