refactor: revert internal exports
[e-mobility-charging-stations-simulator.git] / src / charging-station / ChargingStationWorker.ts
index 4361ab9badd0a6f0e6d80b82f16e62a8fed0a804..c4ff06eabf2cc601e0ee44a1ac66292df8267bc7 100644 (file)
@@ -4,7 +4,8 @@ import { parentPort, workerData } from 'node:worker_threads';
 
 import { ThreadWorker } from 'poolifier';
 
-import { ChargingStation, ChargingStationUtils } from './internal';
+import { ChargingStation } from './ChargingStation';
+import { ChargingStationUtils } from './ChargingStationUtils';
 import type { ChargingStationWorkerData } from '../types';
 import { Utils } from '../utils';
 import { WorkerConstants, type WorkerMessage, WorkerMessageEvents } from '../worker';