From a3c5d1b588f6094c3dbf8f92ab16cd32de06ca1a Mon Sep 17 00:00:00 2001 From: adueck Date: Tue, 26 Nov 2024 16:47:05 +0500 Subject: [PATCH] m --- new-functions/src/index.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/new-functions/src/index.ts b/new-functions/src/index.ts index 2db96b8..77c8ad1 100644 --- a/new-functions/src/index.ts +++ b/new-functions/src/index.ts @@ -7,4 +7,9 @@ app.get("/", (c) => { return c.text("Hi from hono updated"); }); +app.get("/wa", (c) => { + // c.env.LINGDOCS_COUCHDB + return c.text("Hi other route"); +}); + export default app;