wheat-cache/gateway/endpoint/define.go

12 lines
179 B
Go
Raw Normal View History

package endpoint
2021-10-24 19:12:07 +08:00
type EndpointInterface interface {
2021-10-24 19:12:07 +08:00
GetTargetAddr(...string) (string, error)
IsEmpty() bool
AddTarget(targets ...string)
}
2021-10-24 20:03:35 +08:00
const (
HashReplicasDefault = 3
)