refactor(simulator): align casing on enums between key and value
[e-mobility-charging-stations-simulator.git] / src / charging-station / ocpp / OCPPIncomingRequestService.ts
index de036e707237bf1393f537abddd62b58cebd0e1f..bca4809e8d38a2af5fc00ae66d619f73d182d742 100644 (file)
@@ -1,4 +1,4 @@
-import { AsyncResource } from 'async_hooks';
+import { AsyncResource } from 'node:async_hooks';
 
 import Ajv, { type JSONSchemaType } from 'ajv';
 import ajvFormats from 'ajv-formats';
@@ -14,7 +14,7 @@ import type {
   JsonType,
   OCPPVersion,
 } from '../../types';
-import { logger } from '../../utils/Logger';
+import { logger } from '../../utils';
 
 const moduleName = 'OCPPIncomingRequestService';