Consistently name directories in repository
authorJérôme Benoit <jerome.benoit@sap.com>
Thu, 2 Dec 2021 13:46:23 +0000 (14:46 +0100)
committerJérôme Benoit <jerome.benoit@sap.com>
Thu, 2 Dec 2021 13:46:23 +0000 (14:46 +0100)
Signed-off-by: Jérôme Benoit <jerome.benoit@piment-noir.org>
src/charging-station/Bootstrap.ts
src/charging-station/UIWebSocketServer.ts
src/charging-station/ui-websocket-services/AbstractUIService.ts [moved from src/charging-station/UIWebSocketServices/AbstractUIService.ts with 100% similarity]
src/charging-station/ui-websocket-services/UIService001.ts [moved from src/charging-station/UIWebSocketServices/UIService001.ts with 100% similarity]
src/charging-station/ui-websocket-services/UIServiceFactory.ts [moved from src/charging-station/UIWebSocketServices/UIServiceFactory.ts with 100% similarity]
src/charging-station/ui-websocket-services/UIServiceUtils.ts [moved from src/charging-station/UIWebSocketServices/UIServiceUtils.ts with 100% similarity]

index 0c398c5739e475bff92a85b4d533968b352b3661..ebb5619b44929c655bf5c275dcf73b7d6aebd2bb 100644 (file)
@@ -5,7 +5,7 @@ import { ChargingStationWorkerData, ChargingStationWorkerMessage, ChargingStatio
 import Configuration from '../utils/Configuration';
 import { Storage } from '../performance/storage/Storage';
 import { StorageFactory } from '../performance/storage/StorageFactory';
-import { UIServiceUtils } from './UIWebSocketServices/UIServiceUtils';
+import { UIServiceUtils } from './ui-websocket-services/UIServiceUtils';
 import UIWebSocketServer from './UIWebSocketServer';
 import Utils from '../utils/Utils';
 import WorkerAbstract from '../worker/WorkerAbstract';
index 59186a5e30da2f4d6cf4a55d770fcf008cb7533c..dba59e9206b4a32583c049bc64d4154abb5d5fd4 100644 (file)
@@ -1,11 +1,11 @@
 import { Protocol, ProtocolCommand, ProtocolRequest, ProtocolVersion } from '../types/UIProtocol';
 import WebSocket, { OPEN, Server, ServerOptions } from 'ws';
 
-import AbstractUIService from './UIWebSocketServices/AbstractUIService';
+import AbstractUIService from './ui-websocket-services/AbstractUIService';
 import BaseError from '../exception/BaseError';
 import Configuration from '../utils/Configuration';
 import { IncomingMessage } from 'http';
-import UIServiceFactory from './UIWebSocketServices/UIServiceFactory';
+import UIServiceFactory from './ui-websocket-services/UIServiceFactory';
 import Utils from '../utils/Utils';
 import logger from '../utils/Logger';