package ports import ( "time" ) type RedisConfigProvider interface { GetString(key string) (string, error) GetInt64(key string) (int64, error) UpdateParam(key string, value string, expiration time.Duration) error }