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