| 12 | ) |
| 13 | |
| 14 | type BasicAuthInjector struct { |
| 15 | Credentials *auth.BasicAuthCredentials |
| 16 | } |
| 17 | |
| 18 | func (b BasicAuthInjector) Inject(r *http.Request) { |
| 19 | if r != nil && b.Credentials != nil { |
nothing calls this directly
no outgoing calls
no test coverage detected