------------------------------------------------------------------------------
| 30 | //------------------------------------------------------------------------------ |
| 31 | |
| 32 | type ConsistentHash interface { |
| 33 | Get(string) string |
| 34 | } |
| 35 | |
| 36 | func newRendezvous(shards []string) ConsistentHash { |
| 37 | return hashtag.NewRendezvousHash(shards) |
no outgoing calls
no test coverage detected