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;