X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Fcharging-station%2Fui-server%2FAbstractUIServer.ts;h=ca53d558894c5db16449d8534ebc0770307dbea7;hb=c3b8313087c651563b66173c2d6dd41034d194f9;hp=053b1baecd450fba7d45691ffeabbe4a261bc510;hpb=268a74bb051fcbbad532fd833f0d8fd2b33b6c64;p=e-mobility-charging-stations-simulator.git diff --git a/src/charging-station/ui-server/AbstractUIServer.ts b/src/charging-station/ui-server/AbstractUIServer.ts index 053b1bae..ca53d558 100644 --- a/src/charging-station/ui-server/AbstractUIServer.ts +++ b/src/charging-station/ui-server/AbstractUIServer.ts @@ -1,9 +1,7 @@ -import { type IncomingMessage, Server, type ServerResponse } from 'http'; +import { type IncomingMessage, Server, type ServerResponse } from 'node:http'; import type { WebSocket } from 'ws'; -import type { AbstractUIService } from './ui-services/AbstractUIService'; -import { UIServiceFactory } from './ui-services/UIServiceFactory'; import { AuthenticationType, type ChargingStationData, @@ -15,6 +13,7 @@ import { type ResponsePayload, type UIServerConfiguration, } from '../../types'; +import { type AbstractUIService, UIServiceFactory } from '../internal'; export abstract class AbstractUIServer { public readonly chargingStations: Map;