From ba09a77f29f840b98b6adddec213e694fb89beba Mon Sep 17 00:00:00 2001 From: Blake Matthes Date: Mon, 15 Jun 2026 01:03:02 -0500 Subject: [PATCH] chore(logistics): renamed the history util to better represent what it is --- ...istics.historicalInv.ts => logistics.utils.historicalInv.ts} | 0 backend/server.ts | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename backend/logistics/{logistics.historicalInv.ts => logistics.utils.historicalInv.ts} (100%) diff --git a/backend/logistics/logistics.historicalInv.ts b/backend/logistics/logistics.utils.historicalInv.ts similarity index 100% rename from backend/logistics/logistics.historicalInv.ts rename to backend/logistics/logistics.utils.historicalInv.ts diff --git a/backend/server.ts b/backend/server.ts index 0f7f4ce..1b86555 100644 --- a/backend/server.ts +++ b/backend/server.ts @@ -8,7 +8,7 @@ import { dbCleanup } from "./db/dbCleanup.controller.js"; import { type Setting, settings } from "./db/schema/settings.schema.js"; import { connectGPSql } from "./gpSql/gpSqlConnection.controller.js"; import { createLogger } from "./logger/logger.controller.js"; -import { historicalSchedule } from "./logistics/logistics.historicalInv.js"; +import { historicalSchedule } from "./logistics/logistics.utils.historicalInv.js"; import { startNotifications } from "./notification/notification.controller.js"; import { sqlJobCleanUp } from "./notification/notification.SqlJobCleanUp.js"; import { createNotifications } from "./notification/notifications.master.js";