| 156 | } |
| 157 | |
| 158 | type azureTokenSource struct { |
| 159 | source tokenSource |
| 160 | cache *azureTokenCache |
| 161 | lock sync.Mutex |
| 162 | cfg map[string]string |
| 163 | persister restclient.AuthProviderConfigPersister |
| 164 | } |
| 165 | |
| 166 | func newAzureTokenSource(source tokenSource, cache *azureTokenCache, cfg map[string]string, persister restclient.AuthProviderConfigPersister) tokenSource { |
| 167 | return &azureTokenSource{ |
nothing calls this directly
no outgoing calls
no test coverage detected