refactor: factor out performance records JSON file path building
[e-mobility-charging-stations-simulator.git] / src / charging-station / WorkerBroadcastChannel.ts
index dd14d781ce61b207d2faf9a0cd42bff9d47933b3..f3c168bdc8f1057611d1b8768d6d1dde0364c627 100644 (file)
@@ -1,4 +1,4 @@
-import { BroadcastChannel } from 'worker_threads';
+import { BroadcastChannel } from 'node:worker_threads';
 
 import type {
   BroadcastChannelRequest,
@@ -6,8 +6,7 @@ import type {
   JsonType,
   MessageEvent,
 } from '../types';
-import { logger } from '../utils/Logger';
-import { Utils } from '../utils/Utils';
+import { Utils, logger } from '../utils';
 
 const moduleName = 'WorkerBroadcastChannel';