© 2026 Hedgehog Software, LLC
export function registerExampleRoute(app: Hono) { app.get("/example", async (c) => { return c.json({ hello: "Hello!" }); }); }