mirror of
https://github.com/goharbor/harbor
synced 2025-05-10 15:14:11 +00:00
9 lines
151 B
Go
9 lines
151 B
Go
package redsync
|
|
|
|
import "github.com/garyburd/redigo/redis"
|
|
|
|
// A Pool maintains a pool of Redis connections.
|
|
type Pool interface {
|
|
Get() redis.Conn
|
|
}
|