refactor(simulator): sort exports, switch to node: import syntax for internal
[e-mobility-charging-stations-simulator.git] / src / charging-station / ui-server / AbstractUIServer.ts
index 053b1baecd450fba7d45691ffeabbe4a261bc510..ca53d558894c5db16449d8534ebc0770307dbea7 100644 (file)
@@ -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<string, ChargingStationData>;