X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Fcharging-station%2Focpp%2FOCPPIncomingRequestService.ts;h=bca4809e8d38a2af5fc00ae66d619f73d182d742;hb=1bf29f5be7c0ffe3d029e447ecb50da55bfd8948;hp=00059f4b5d6c5c0b3c27d6779ea19b2b0609c5f8;hpb=268a74bb051fcbbad532fd833f0d8fd2b33b6c64;p=e-mobility-charging-stations-simulator.git diff --git a/src/charging-station/ocpp/OCPPIncomingRequestService.ts b/src/charging-station/ocpp/OCPPIncomingRequestService.ts index 00059f4b..bca4809e 100644 --- a/src/charging-station/ocpp/OCPPIncomingRequestService.ts +++ b/src/charging-station/ocpp/OCPPIncomingRequestService.ts @@ -1,10 +1,10 @@ -import { AsyncResource } from 'async_hooks'; +import { AsyncResource } from 'node:async_hooks'; import Ajv, { type JSONSchemaType } from 'ajv'; import ajvFormats from 'ajv-formats'; -import { OCPPConstants } from './OCPPConstants'; -import { OCPPServiceUtils } from './OCPPServiceUtils'; +import { OCPPConstants, OCPPServiceUtils } from './internal'; +import { type ChargingStation, ChargingStationUtils } from '../../charging-station'; import { OCPPError } from '../../exception'; import type { ClearCacheResponse, @@ -14,9 +14,7 @@ import type { JsonType, OCPPVersion, } from '../../types'; -import { logger } from '../../utils/Logger'; -import type { ChargingStation } from '../ChargingStation'; -import { ChargingStationUtils } from '../ChargingStationUtils'; +import { logger } from '../../utils'; const moduleName = 'OCPPIncomingRequestService';