redis/redis_no_context.go

16 lines
243 B
Go
Raw Normal View History

2017-01-13 07:11:07 +03:00
// +build !go1.7
package redis
import (
2017-02-18 17:42:34 +03:00
"github.com/go-redis/redis/internal/pool"
2017-01-13 07:11:07 +03:00
)
type baseClient struct {
connPool pool.Pooler
opt *Options
process func(Cmder) error
onClose func() error // hook called when client is closed
}