mirror of
https://github.com/zeromicro/go-zero.git
synced 2026-05-13 18:00:00 +08:00
13 lines
160 B
Go
13 lines
160 B
Go
|
|
package internal
|
||
|
|
|
||
|
|
import "zero/core/stores/redis"
|
||
|
|
|
||
|
|
type (
|
||
|
|
ClusterConf []NodeConf
|
||
|
|
|
||
|
|
NodeConf struct {
|
||
|
|
redis.RedisConf
|
||
|
|
Weight int `json:",default=100"`
|
||
|
|
}
|
||
|
|
)
|