© 2026 Hedgehog Software, LLC
app
Hono
import { Hono } from 'hono' const app = new Hono() app.get('/', (c) => c.text('Hono!')) export default app