Files
go-zero/core/stores/internal/config.go
2020-08-08 16:40:10 +08:00

13 lines
183 B
Go

package internal
import "github.com/tal-tech/go-zero/core/stores/redis"
type (
ClusterConf []NodeConf
NodeConf struct {
redis.RedisConf
Weight int `json:",default=100"`
}
)