import { Hono } from "hono"; import * as cwRoutes from "../cw"; const cwRouter = new Hono(); Object.values(cwRoutes).map((r) => cwRouter.route("/", r)); export default cwRouter;