From 7999a4bdda409a877257f403ccd48a714d6f19ef Mon Sep 17 00:00:00 2001 From: Mauricio Siu <47042324+Siumauricio@users.noreply.github.com> Date: Fri, 30 Aug 2024 00:00:40 -0600 Subject: [PATCH] refactor: lint --- apps/dokploy/server/setup/traefik-setup.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/dokploy/server/setup/traefik-setup.ts b/apps/dokploy/server/setup/traefik-setup.ts index fa968fc51..15542a00b 100644 --- a/apps/dokploy/server/setup/traefik-setup.ts +++ b/apps/dokploy/server/setup/traefik-setup.ts @@ -1,6 +1,6 @@ import { chmodSync, existsSync, mkdirSync, writeFileSync } from "node:fs"; import path from "node:path"; -import type { CreateServiceOptions, ContainerTaskSpec } from "dockerode"; +import type { ContainerTaskSpec, CreateServiceOptions } from "dockerode"; import { dump } from "js-yaml"; import { DYNAMIC_TRAEFIK_PATH, MAIN_TRAEFIK_PATH, docker } from "../constants"; import { pullImage } from "../utils/docker/utils";