test(ocme): shipment pallets

This commit is contained in:
2025-03-10 16:58:06 -05:00
parent a5cd8433f7
commit 8c31ac723d
3 changed files with 104 additions and 1 deletions

View File

@@ -3,9 +3,13 @@ import {OpenAPIHono} from "@hono/zod-openapi";
// routes
import getInfo from "./route/getInfo.js";
import postRunningNr from "./route/postRunningNumber.js";
import pickedup from "./route/pickedUp.js";
import postsscc from "./route/postSSCC.js";
import getShipments from "./route/getShipmentPallets.js";
const app = new OpenAPIHono();
const routes = [getInfo, postRunningNr] as const;
const routes = [getInfo, postRunningNr, postsscc, pickedup, getShipments] as const;
// app.route("/server", modules);
const appRoutes = routes.forEach((route) => {