NewStubClientFactory returns a stub instance, so you can satisfy external code that needs a ClientFactory
()
| 386 | |
| 387 | // NewStubClientFactory returns a stub instance, so you can satisfy external code that needs a ClientFactory |
| 388 | func NewStubClientFactory() ClientFactory { |
| 389 | return &stubClientFactory{} |
| 390 | } |
| 391 | |
| 392 | type stubClientFactory struct{} |
| 393 |