refactor: revert internal exports
[e-mobility-charging-stations-simulator.git] / src / charging-station / ocpp / 2.0 / OCPP20RequestService.ts
index e65ff3d41e8ad4caa44ca9dcfadba6f6098f5f56..9faa7952455ab63605cabf2d2f2ac8e4530dfc2a 100644 (file)
@@ -2,6 +2,8 @@
 
 import type { JSONSchemaType } from 'ajv';
 
+import { OCPP20Constants } from './OCPP20Constants';
+import { OCPP20ServiceUtils } from './OCPP20ServiceUtils';
 import type { ChargingStation } from '../../../charging-station';
 import { OCPPError } from '../../../exception';
 import {
@@ -16,12 +18,8 @@ import {
   type RequestParams,
 } from '../../../types';
 import { Utils } from '../../../utils';
-import {
-  OCPP20Constants,
-  OCPP20ServiceUtils,
-  OCPPRequestService,
-  type OCPPResponseService,
-} from '../internal';
+import { OCPPRequestService } from '../OCPPRequestService';
+import type { OCPPResponseService } from '../OCPPResponseService';
 
 const moduleName = 'OCPP20RequestService';