WithSecretManager allows setting the secret manager.
(manager SecretManager)
| 590 | |
| 591 | // WithSecretManager allows setting the secret manager. |
| 592 | func WithSecretManager(manager SecretManager) SecretManagerOption { |
| 593 | return &secretManagerOption{ |
| 594 | secretManager: manager, |
| 595 | } |
| 596 | } |
| 597 | |
| 598 | // NewClient returns a http.Client using the specified http.RoundTripper. |
| 599 | func newClient(rt http.RoundTripper) *http.Client { |
no outgoing calls
searching dependent graphs…