Factory is a *di.Factory that creates redis.UniversalClient using a specific configuration entry.
| 13 | // Factory is a *di.Factory that creates redis.UniversalClient using a |
| 14 | // specific configuration entry. |
| 15 | type Factory struct { |
| 16 | *di.Factory |
| 17 | } |
| 18 | |
| 19 | // Make creates redis.UniversalClient using a specific configuration entry. |
| 20 | func (r Factory) Make(name string) (redis.UniversalClient, error) { |
nothing calls this directly
no outgoing calls
no test coverage detected