feat(simulator): add certificates related OCPP 2.x types
[e-mobility-charging-stations-simulator.git] / src / performance / storage / Storage.ts
index 5fb0fb61beb4190ec9cdc98a7252bf4c8f8115c5..ba177524cfa9e86667072c6c5da4732c05250ee9 100644 (file)
@@ -1,13 +1,15 @@
 // Copyright Jerome Benoit. 2021-2023. All Rights Reserved.
 
-import { URL } from 'url';
+import { URL } from 'node:url';
 
-import type { EmptyObject } from '../../types/EmptyObject';
-import type { HandleErrorParams } from '../../types/Error';
-import type { Statistics } from '../../types/Statistics';
-import { DBName, StorageType } from '../../types/Storage';
-import logger from '../../utils/Logger';
-import Utils from '../../utils/Utils';
+import {
+  DBName,
+  type EmptyObject,
+  type HandleErrorParams,
+  type Statistics,
+  StorageType,
+} from '../../types';
+import { Utils, logger } from '../../utils';
 
 export abstract class Storage {
   protected readonly storageUri: URL;