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

View File

@ -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;