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