feat(datamart): total inv migrated over

This commit is contained in:
2025-04-02 21:23:42 -05:00
parent 7e484a0f90
commit b2683d0429
6 changed files with 264 additions and 2 deletions

View File

@@ -1,10 +1,11 @@
import { OpenAPIHono } from "@hono/zod-openapi";
import activequerys from "./route/getCurrentQuerys.js";
import getArticles from "./route/getActiveArticles.js";
import currentInv from "./route/getInventory.js";
const app = new OpenAPIHono();
const routes = [getArticles] as const;
const routes = [activequerys, getArticles, currentInv] as const;
const appRoutes = routes.forEach((route) => {
app.route("/datamart", route);