1
0
mirror of https://github.com/redis/go-redis.git synced 2025-07-28 06:42:00 +03:00

Unexport HashSlot.

This commit is contained in:
Vladimir Mihailenco
2015-03-23 10:23:33 +02:00
parent 2dc0bd1c0a
commit 36a06ec378
2 changed files with 8 additions and 4 deletions

View File

@ -3,3 +3,7 @@ package redis
func (c *baseClient) Pool() pool {
return c.connPool
}
func HashSlot(key string) int {
return hashSlot(key)
}