refactor(simulator): switch utils to internal module export/import
[e-mobility-charging-stations-simulator.git] / src / charging-station / ChargingStationUtils.ts
index 7254734aaf26f1d1bfe32b64a68f258afa0c9504..74ec539095991ce20cfed09d0b849e2b6aa4f809 100644 (file)
@@ -23,11 +23,14 @@ import {
   RecurrencyKindType,
   Voltage,
 } from '../types';
-import { Configuration } from '../utils/Configuration';
-import { Constants } from '../utils/Constants';
-import { ACElectricUtils, DCElectricUtils } from '../utils/ElectricUtils';
-import { logger } from '../utils/Logger';
-import { Utils } from '../utils/Utils';
+import {
+  ACElectricUtils,
+  Configuration,
+  Constants,
+  DCElectricUtils,
+  Utils,
+  logger,
+} from '../utils';
 import { WorkerProcessType } from '../worker';
 
 const moduleName = 'ChargingStationUtils';