1
0
mirror of https://github.com/redis/go-redis.git synced 2025-04-16 09:23:06 +03:00

Expose Process on UniversalClient

This commit is contained in:
Dimitrij Denissenko 2017-02-21 12:13:25 +00:00
parent 12c49831d7
commit f605e59ade

View File

@ -115,6 +115,7 @@ func (o *UniversalOptions) simple() *Options {
// applications locally.
type UniversalClient interface {
Cmdable
Process(cmd Cmder) error
Close() error
}