feat(datamart): included fifoindex monitor

This commit is contained in:
2025-05-28 11:51:15 -05:00
parent a07a9d2145
commit 23da6c6304
4 changed files with 76 additions and 0 deletions

View File

@@ -7,6 +7,7 @@ import getOpenOrders from "./route/getOpenOrders.js";
import getDeliveryByDate from "./route/getDeliveryDateByRange.js";
import fakeEDI from "./route/fakeEDI.js";
import addressCorrections from "./route/getCityStateData.js";
import fifoIndex from "./route/getFifoIndex.js";
const app = new OpenAPIHono();
@@ -19,6 +20,7 @@ const routes = [
getDeliveryByDate,
fakeEDI,
addressCorrections,
fifoIndex,
] as const;
const appRoutes = routes.forEach((route) => {