feat(app): stats added in to check if build in last build and also if theres a pending file
This commit is contained in:
6
app/src/internal/system/routes.ts
Normal file
6
app/src/internal/system/routes.ts
Normal file
@@ -0,0 +1,6 @@
|
||||
import type { Express, Request, Response } from "express";
|
||||
import stats from "./routes/stats.js";
|
||||
|
||||
export const setupSystemRoutes = (app: Express, basePath: string) => {
|
||||
app.use(basePath + "/api/system/stats", stats);
|
||||
};
|
||||
Reference in New Issue
Block a user