Merge pull request #509 from go-redis/fix/universal-client

Expose Process on UniversalClient
This commit is contained in:
Vladimir Mihailenco 2017-02-23 16:06:50 +03:00 committed by GitHub
commit a6984fdb4c
1 changed files with 1 additions and 0 deletions

View File

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