| 976 | } |
| 977 | |
| 978 | type oauth2TokenSourceConfig interface { |
| 979 | TokenSource(ctx context.Context) oauth2.TokenSource |
| 980 | } |
| 981 | |
| 982 | func (rt *oauth2RoundTripper) newOauth2TokenSource(req *http.Request, clientCredential string) (client *http.Client, source oauth2.TokenSource, err error) { |
| 983 | tlsConfig, err := NewTLSConfig(&rt.config.TLSConfig, WithSecretManager(rt.opts.secretManager)) |
no outgoing calls
no test coverage detected