diff --git a/packages/server/src/utils/access-log/handler.ts b/packages/server/src/utils/access-log/handler.ts index 3513e4d4b..13a52c4b1 100644 --- a/packages/server/src/utils/access-log/handler.ts +++ b/packages/server/src/utils/access-log/handler.ts @@ -1,5 +1,8 @@ import { paths } from "@dokploy/server/constants"; -import { updateWebServerSettings } from "@dokploy/server/services/web-server-settings"; +import { + getWebServerSettings, + updateWebServerSettings, +} from "@dokploy/server/services/web-server-settings"; import { scheduledJobs, scheduleJob } from "node-schedule"; import { execAsync } from "../process/execAsync"; @@ -58,8 +61,6 @@ export const stopLogCleanup = async (): Promise => { } }; -import { getWebServerSettings } from "@dokploy/server/services/web-server-settings"; - export const getLogCleanupStatus = async (): Promise<{ enabled: boolean; cronExpression: string | null;