From c13c1d0168ff5f1759b3f33ee2b559f59773314e Mon Sep 17 00:00:00 2001 From: adueck Date: Tue, 26 Nov 2024 16:32:05 +0500 Subject: [PATCH] test hono update --- new-functions/src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/new-functions/src/index.ts b/new-functions/src/index.ts index 47ec56a..2db96b8 100644 --- a/new-functions/src/index.ts +++ b/new-functions/src/index.ts @@ -4,7 +4,7 @@ const app = new Hono(); app.get("/", (c) => { // c.env.LINGDOCS_COUCHDB - return c.text("Hi from hono"); + return c.text("Hi from hono updated"); }); export default app;