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;