mirror of
https://github.com/redis/go-redis.git
synced 2025-04-26 21:08:50 +03:00
16 lines
243 B
Go
16 lines
243 B
Go
// +build !go1.7
|
|
|
|
package redis
|
|
|
|
import (
|
|
"github.com/go-redis/redis/internal/pool"
|
|
)
|
|
|
|
type baseClient struct {
|
|
connPool pool.Pooler
|
|
opt *Options
|
|
|
|
process func(Cmder) error
|
|
onClose func() error // hook called when client is closed
|
|
}
|