c3584f4ec8
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
9 lines
260 B
TypeScript
9 lines
260 B
TypeScript
// server/routes/index.ts
|
|
import { Hono } from "hono";
|
|
import { machinesRoutes } from "./machines.js";
|
|
import { actionsRoutes } from "./actions.js";
|
|
|
|
export const api = new Hono();
|
|
api.route("/machines", machinesRoutes);
|
|
api.route("/machines", actionsRoutes);
|