test hono update

This commit is contained in:
adueck 2024-11-26 16:32:05 +05:00
parent 0feaec0b62
commit c13c1d0168
1 changed files with 1 additions and 1 deletions

View File

@ -4,7 +4,7 @@ const app = new Hono();
app.get("/", (c) => { app.get("/", (c) => {
// c.env.LINGDOCS_COUCHDB // c.env.LINGDOCS_COUCHDB
return c.text("Hi from hono"); return c.text("Hi from hono updated");
}); });
export default app; export default app;