build(deps): apply updates
[e-mobility-charging-stations-simulator.git] / src / charging-station / AuthorizedTagsCache.ts
index a3c8e5cdc42c7bfc1f9e978bb59067f856783fd3..332b3a983a8b8760ef33668639ec09b3aaf24d9c 100644 (file)
@@ -1,11 +1,9 @@
 import fs from 'node:fs';
 
-import { FileType } from '../types/FileType';
-import FileUtils from '../utils/FileUtils';
-import logger from '../utils/Logger';
-import Utils from '../utils/Utils';
+import { FileType } from '../types';
+import { FileUtils, Utils, logger } from '../utils';
 
-export default class AuthorizedTagsCache {
+export class AuthorizedTagsCache {
   private static instance: AuthorizedTagsCache | null = null;
   private readonly tagsCaches: Map<string, string[]>;
   private readonly FSWatchers: Map<string, fs.FSWatcher | undefined>;