test(printers): started printer migration

This commit is contained in:
2025-03-16 15:33:44 -05:00
parent d178e04362
commit 04a607d3bc
3 changed files with 118 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
import {OpenAPIHono} from "@hono/zod-openapi";
import alerts from "./route/printerAlert.js";
const app = new OpenAPIHono();
const port = 4000;
const routes = [alerts] as const;
// app.route("/server", modules);
const appRoutes = routes.forEach((route) => {
app.route("/printers", route);
});
export default app;