X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Fcharging-station%2Fui-server%2FUIWebSocketServer.ts;h=cc00db13f233af42975062331f054992135ce510;hb=83e586e889afe95ef11eb186030c643bbac2aeba;hp=bf9eb8b3a66b753907d98a2df18120dcd25291ce;hpb=59b6ed8d1db313ef3371efd8ab5e039cf3dedab0;p=e-mobility-charging-stations-simulator.git diff --git a/src/charging-station/ui-server/UIWebSocketServer.ts b/src/charging-station/ui-server/UIWebSocketServer.ts index bf9eb8b3..cc00db13 100644 --- a/src/charging-station/ui-server/UIWebSocketServer.ts +++ b/src/charging-station/ui-server/UIWebSocketServer.ts @@ -4,6 +4,8 @@ import type { Duplex } from 'node:stream'; import { StatusCodes } from 'http-status-codes'; import WebSocket, { type RawData, WebSocketServer } from 'ws'; +import { AbstractUIServer } from './AbstractUIServer'; +import { UIServerUtils } from './UIServerUtils'; import { type ProtocolRequest, type ProtocolResponse, @@ -11,7 +13,6 @@ import { WebSocketCloseEventStatusCode, } from '../../types'; import { Constants, Utils, logger } from '../../utils'; -import { AbstractUIServer, UIServerUtils } from '../internal'; const moduleName = 'UIWebSocketServer';