export interface ConfigServiceInterface {
    get(key: string): string;
    getConfig(): Record<string, string>;
}
