SetAuthManager sets the auth manager for the HTTP client.
(authManager *AuthManager)
| 33 | |
| 34 | // SetAuthManager sets the auth manager for the HTTP client. |
| 35 | func (hc *HTTPClient) SetAuthManager(authManager *AuthManager) { |
| 36 | hc.authManager = authManager |
| 37 | } |
| 38 | |
| 39 | // SetAPIToken sets the API token for authentication. |
| 40 | func (hc *HTTPClient) SetAPIToken(token string) { |
no outgoing calls