Files
go-zero/core/stores/internal/config.go
2020-07-26 17:09:05 +08:00

13 lines
160 B
Go

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