From: Jérôme Benoit Date: Thu, 2 Dec 2021 13:46:23 +0000 (+0100) Subject: Consistently name directories in repository X-Git-Tag: v1.1.37~3 X-Git-Url: https://git.piment-noir.org/?a=commitdiff_plain;h=383cb2aee597e711f037c9f67151191bb233a91c;p=e-mobility-charging-stations-simulator.git Consistently name directories in repository Signed-off-by: Jérôme Benoit --- diff --git a/src/charging-station/Bootstrap.ts b/src/charging-station/Bootstrap.ts index 0c398c57..ebb5619b 100644 --- a/src/charging-station/Bootstrap.ts +++ b/src/charging-station/Bootstrap.ts @@ -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'; diff --git a/src/charging-station/UIWebSocketServer.ts b/src/charging-station/UIWebSocketServer.ts index 59186a5e..dba59e92 100644 --- a/src/charging-station/UIWebSocketServer.ts +++ b/src/charging-station/UIWebSocketServer.ts @@ -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'; diff --git a/src/charging-station/UIWebSocketServices/AbstractUIService.ts b/src/charging-station/ui-websocket-services/AbstractUIService.ts similarity index 100% rename from src/charging-station/UIWebSocketServices/AbstractUIService.ts rename to src/charging-station/ui-websocket-services/AbstractUIService.ts diff --git a/src/charging-station/UIWebSocketServices/UIService001.ts b/src/charging-station/ui-websocket-services/UIService001.ts similarity index 100% rename from src/charging-station/UIWebSocketServices/UIService001.ts rename to src/charging-station/ui-websocket-services/UIService001.ts diff --git a/src/charging-station/UIWebSocketServices/UIServiceFactory.ts b/src/charging-station/ui-websocket-services/UIServiceFactory.ts similarity index 100% rename from src/charging-station/UIWebSocketServices/UIServiceFactory.ts rename to src/charging-station/ui-websocket-services/UIServiceFactory.ts diff --git a/src/charging-station/UIWebSocketServices/UIServiceUtils.ts b/src/charging-station/ui-websocket-services/UIServiceUtils.ts similarity index 100% rename from src/charging-station/UIWebSocketServices/UIServiceUtils.ts rename to src/charging-station/ui-websocket-services/UIServiceUtils.ts