© 2026 Hedgehog Software, LLC
const app = new Hono(); app.get("/", (c) => c.json("list books")); app.get("/:id", (c) => c.json(
)); export default app;