X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Futils%2FConstants.ts;h=ee8bcb41c8abe5aabdcf383396d7bc4f343e45e7;hb=92403944ed5cdbdd07faaa2da783682e1ea9a9dd;hp=a457bd5c9d825200d00fe1ee45f8fbaed386a18c;hpb=193346852bb2e828d61f4f98343d03fc70ba284b;p=e-mobility-charging-stations-simulator.git diff --git a/src/utils/Constants.ts b/src/utils/Constants.ts index a457bd5c..ee8bcb41 100644 --- a/src/utils/Constants.ts +++ b/src/utils/Constants.ts @@ -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 + } }