Apply dependencies update
[e-mobility-charging-stations-simulator.git] / src / utils / Constants.ts
index a457bd5c9d825200d00fe1ee45f8fbaed386a18c..ee8bcb41c8abe5aabdcf383396d7bc4f343e45e7 100644 (file)
@@ -1,3 +1,4 @@
+import { MeterValueMeasurand } from '../types/ocpp/MeterValues';
 import {
   AvailabilityStatus,
   ChargingProfileStatus,
@@ -8,8 +9,6 @@ import {
   UnlockStatus,
 } from '../types/ocpp/Responses';
 
-import { MeterValueMeasurand } from '../types/ocpp/MeterValues';
-
 export default class Constants {
   static readonly OCPP_RESPONSE_EMPTY = Object.freeze({});
   static readonly OCPP_RESPONSE_ACCEPTED = Object.freeze({ status: DefaultStatus.ACCEPTED });
@@ -119,4 +118,8 @@ export default class Constants {
 
   static readonly DEFAULT_UI_WEBSOCKET_SERVER_HOST = 'localhost';
   static readonly DEFAULT_UI_WEBSOCKET_SERVER_PORT = 8080;
+
+  private constructor() {
+    // This is intentional
+  }
 }