added opendock apt check route

This commit is contained in:
2026-02-20 12:17:39 -06:00
parent 5469a0dc5c
commit a8af021621
4 changed files with 52 additions and 2 deletions

View File

@@ -3,7 +3,7 @@ import { createLogger } from "../logger/logger.controller.js";
interface Data {
success: boolean;
module: "system" | "ocp" | "routes" | "datamart" | "utils";
module: "system" | "ocp" | "routes" | "datamart" | "utils" | "opendock";
subModule:
| "db"
| "labeling"
@@ -13,7 +13,8 @@ interface Data {
| "sendmail"
| "auth"
| "datamart"
| "jobs";
| "jobs"
| "apt";
level: "info" | "error" | "debug" | "fatal";
message: string;
data?: unknown[];