X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Fcharging-station%2Fui-server%2FUIServerFactory.ts;h=905ce66d5325fc7bca9424d6f313de5cec089588;hb=ded57f0259fa940943889c5370bc8a91c8178866;hp=9d2bc5741c7c30caee778135635e2b98e830e3b3;hpb=78202038ffd2aca15aa97f45bc66ba42f40f2ec4;p=e-mobility-charging-stations-simulator.git diff --git a/src/charging-station/ui-server/UIServerFactory.ts b/src/charging-station/ui-server/UIServerFactory.ts index 9d2bc574..905ce66d 100644 --- a/src/charging-station/ui-server/UIServerFactory.ts +++ b/src/charging-station/ui-server/UIServerFactory.ts @@ -1,14 +1,10 @@ import chalk from 'chalk'; -import type { AbstractUIServer } from './AbstractUIServer'; -import UIHttpServer from './UIHttpServer'; -import { UIServerUtils } from './UIServerUtils'; -import UIWebSocketServer from './UIWebSocketServer'; -import type { UIServerConfiguration } from '../../types/ConfigurationData'; -import { ApplicationProtocol } from '../../types/UIProtocol'; -import Configuration from '../../utils/Configuration'; +import { ApplicationProtocol, type UIServerConfiguration } from '../../types'; +import { Configuration } from '../../utils'; +import { type AbstractUIServer, UIHttpServer, UIServerUtils, UIWebSocketServer } from '../internal'; -export default class UIServerFactory { +export class UIServerFactory { private constructor() { // This is intentional }