test(rfid): intial trials built

This commit is contained in:
2025-03-13 21:37:04 -05:00
parent 0054c8f7d4
commit da04e9d35d
15 changed files with 386 additions and 1 deletions

View File

@@ -0,0 +1,18 @@
import {OpenAPIHono} from "@hono/zod-openapi";
import mgtEvents from "./route/mgtEvents.js";
import tagInfo from "./route/tagInfo.js";
const app = new OpenAPIHono();
const routes = [
mgtEvents,
tagInfo,
// settings
] as const;
// app.route("/server", modules);
const appRoutes = routes.forEach((route) => {
app.route("/rfid", route);
});
export default app;