1
2
3
4
5
6
7
import { Hono } from "npm:hono@4";
const app = new Hono();
app.get("/", (c) => c.text("Hello Val!!!"));
export default app.fetch;