X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Fcharging-station%2Fui-server%2FUIServerFactory.ts;h=a5fb5a5d627c926e9d700c9ec34bbb273acd476d;hb=be245fdab36274873e0a9651589cebd097548076;hp=2a125af07971fe9b724a06f45cf8c04b5e03c040;hpb=ed3d28080b6597ba2f728d625e34ce05aea49d06;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 2a125af0..a5fb5a5d 100644 --- a/src/charging-station/ui-server/UIServerFactory.ts +++ b/src/charging-station/ui-server/UIServerFactory.ts @@ -1,14 +1,13 @@ import chalk from 'chalk'; -import type { UIServerConfiguration } from '../../types/ConfigurationData'; -import { ApplicationProtocol } from '../../types/UIProtocol'; -import Configuration from '../../utils/Configuration'; import type { AbstractUIServer } from './AbstractUIServer'; -import UIHttpServer from './UIHttpServer'; +import { UIHttpServer } from './UIHttpServer'; import { UIServerUtils } from './UIServerUtils'; -import UIWebSocketServer from './UIWebSocketServer'; +import { UIWebSocketServer } from './UIWebSocketServer'; +import { ApplicationProtocol, type UIServerConfiguration } from '../../types'; +import { Configuration } from '../../utils'; -export default class UIServerFactory { +export class UIServerFactory { private constructor() { // This is intentional }