feat(datamart): intial setup to datamart migrations

This commit is contained in:
2025-12-30 08:02:18 -06:00
parent 9531401e56
commit 9b5a75300a
6 changed files with 100 additions and 9 deletions

View File

@@ -0,0 +1,18 @@
import { Router } from "express";
import { apiReturn } from "../utils/returnHelper.utils.js";
const r = Router();
r.post("/add", async (_, res) => {
apiReturn(res, {
success: true,
level: "info",
module: "routes",
subModule: "prodSql",
message: "connect.message",
data: [{ connect: "" }],
status: 200,
});
});
export default r;