Files
system_update/server/routes/index.ts
T
2026-06-05 04:13:15 +02:00

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);