newClientAdapter creates a new client adapter for regular Redis clients.
(client *baseClient)
| 18 | |
| 19 | // newClientAdapter creates a new client adapter for regular Redis clients. |
| 20 | func newClientAdapter(client *baseClient) interfaces.ClientInterface { |
| 21 | return &clientAdapter{client: client} |
| 22 | } |
| 23 | |
| 24 | // clientAdapter adapts a Redis client to implement interfaces.ClientInterface. |
| 25 | type clientAdapter struct { |
no outgoing calls
no test coverage detected