SetBasicAuth is a global wrapper methods which delegated to the default client, create a request and SetBasicAuth for request.
(username, password string)
| 129 | // SetBasicAuth is a global wrapper methods which delegated |
| 130 | // to the default client, create a request and SetBasicAuth for request. |
| 131 | func SetBasicAuth(username, password string) *Request { |
| 132 | return defaultClient.R().SetBasicAuth(username, password) |
| 133 | } |
| 134 | |
| 135 | // SetDigestAuth is a global wrapper methods which delegated |
| 136 | // to the default client, create a request and SetDigestAuth for request. |
nothing calls this directly
no test coverage detected
searching dependent graphs…