X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Fcharging-station%2Fui-server%2FUIServerFactory.ts;h=a5fb5a5d627c926e9d700c9ec34bbb273acd476d;hb=0b22144c135af531858c989650e864edb352764d;hp=ea95c5274c1977add17726002210e786cf997fd5;hpb=2896e06dc8d72adf7150b23c941079f622f6f37c;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 ea95c527..a5fb5a5d 100644 --- a/src/charging-station/ui-server/UIServerFactory.ts +++ b/src/charging-station/ui-server/UIServerFactory.ts @@ -1,8 +1,11 @@ import chalk from 'chalk'; +import type { AbstractUIServer } from './AbstractUIServer'; +import { UIHttpServer } from './UIHttpServer'; +import { UIServerUtils } from './UIServerUtils'; +import { UIWebSocketServer } from './UIWebSocketServer'; import { ApplicationProtocol, type UIServerConfiguration } from '../../types'; -import { Configuration } from '../../utils/Configuration'; -import { type AbstractUIServer, UIHttpServer, UIServerUtils, UIWebSocketServer } from '../internal'; +import { Configuration } from '../../utils'; export class UIServerFactory { private constructor() {