X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Fperformance%2Fstorage%2FStorage.ts;h=ba177524cfa9e86667072c6c5da4732c05250ee9;hb=6b635033ddf255392ded26fd03fe1f128b15ad69;hp=5fb0fb61beb4190ec9cdc98a7252bf4c8f8115c5;hpb=1895299db899eb53db7fb1615b82624f806017e8;p=e-mobility-charging-stations-simulator.git diff --git a/src/performance/storage/Storage.ts b/src/performance/storage/Storage.ts index 5fb0fb61..ba177524 100644 --- a/src/performance/storage/Storage.ts +++ b/src/performance/storage/Storage.ts @@ -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;