Permit to disable persistent configuration storage.
[e-mobility-charging-stations-simulator.git] / src / charging-station / ui-server / AbstractUIServer.ts
index 2608e83443a8bfcfd43a68a93c6074f50f0f0272..92860638192a197a1b29f57cfe7850ce92de9022 100644 (file)
@@ -6,7 +6,7 @@ import { Server as WSServer } from 'ws';
 export abstract class AbstractUIServer {
   public readonly chargingStations: Set<string>;
   protected readonly uiServices: Map<ProtocolVersion, AbstractUIService>;
-  protected uiServer: WSServer | HttpServer;
+  protected server: WSServer | HttpServer;
 
   public constructor() {
     this.chargingStations = new Set<string>();