(creds *auth.Credentials)
| 585 | } |
| 586 | |
| 587 | func httpBasicAuthCredentials(creds *auth.Credentials) *http.BasicAuth { |
| 588 | if creds == nil { |
| 589 | return nil |
| 590 | } |
| 591 | |
| 592 | return &http.BasicAuth{ |
| 593 | Username: creds.Username, |
| 594 | Password: creds.Password, |
| 595 | } |
| 596 | } |
no outgoing calls
no test coverage detected
searching dependent graphs…