19 lines
470 B
Go
19 lines
470 B
Go
// ------------------------------------------------------------
|
|
// Copyright (c) Microsoft Corporation and Dapr Contributors.
|
|
// Licensed under the MIT License.
|
|
// ------------------------------------------------------------
|
|
|
|
package redis
|
|
|
|
import "time"
|
|
|
|
type metadata struct {
|
|
host string
|
|
password string
|
|
sentinelMasterName string
|
|
maxRetries int
|
|
maxRetryBackoff time.Duration
|
|
enableTLS bool
|
|
failover bool
|
|
}
|