export interface RedisConfig {
    host: string;
    port: number;
    username?: string;
    password?: string;
}
