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