Apply depedencies update
[e-mobility-charging-stations-simulator.git] / src / performance / storage / MongoDBStorage.ts
index f10481a0f96622cbe000e22def7da71e22936516..54fc43349b2f3cbe8dbabc36ec3cd53dbc692936 100644 (file)
@@ -1,11 +1,11 @@
-// Copyright Jerome Benoit. 2021. All Rights Reserved.
+// Copyright Jerome Benoit. 2021-2023. All Rights Reserved.
 
 import { MongoClient } from 'mongodb';
 
-import type Statistics from '../../types/Statistics';
+import { Storage } from './Storage';
+import type { Statistics } from '../../types/Statistics';
 import { StorageType } from '../../types/Storage';
 import Constants from '../../utils/Constants';
-import { Storage } from './Storage';
 
 export class MongoDBStorage extends Storage {
   private readonly client: MongoClient | null;