feat(linting): adding in the checks to make me better and not so sloppy

This commit is contained in:
2025-12-22 15:59:49 -06:00
parent 6bb27e588d
commit a31b516538
14 changed files with 191 additions and 62 deletions

View File

@@ -0,0 +1,10 @@
import type { Express } from "express";
import restart from "./prodSqlRestart.route.js";
import start from "./prodSqlStart.route.js";
import stop from "./prodSqlStop.route.js";
export const setupProdSqlRoutes = (baseUrl: string, app: Express) => {
//setup all the routes
app.use(`${baseUrl}/api/system/prodSql`, start);
app.use(`${baseUrl}/api/system/prodSql`, stop);
app.use(`${baseUrl}/api/system/prodSql`, restart);
};