From 4819406af577d1c8fbe08bc8b1b0addef5437087 Mon Sep 17 00:00:00 2001 From: Reto Brunner Date: Thu, 9 May 2024 17:24:53 +0200 Subject: [PATCH] ident: order imports --- server/identification.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/identification.ts b/server/identification.ts index 1c01d793..96648083 100644 --- a/server/identification.ts +++ b/server/identification.ts @@ -1,9 +1,9 @@ -import log from "./log"; import fs from "fs"; import net, {Socket} from "net"; import colors from "chalk"; import Helper from "./helper"; import Config from "./config"; +import log from "./log"; type Connection = { socket: Socket;