forked from p93542168/wheat-cache
12 lines
179 B
Go
12 lines
179 B
Go
|
package endpoint
|
||
|
|
||
|
type EndpointInterface interface {
|
||
|
GetTargetAddr(...string) (string, error)
|
||
|
IsEmpty() bool
|
||
|
AddTarget(targets ...string)
|
||
|
}
|
||
|
|
||
|
const (
|
||
|
HashReplicasDefault = 3
|
||
|
)
|