SetAuthToken sets the authorization token for API requests.
(token string)
| 78 | |
| 79 | // SetAuthToken sets the authorization token for API requests. |
| 80 | func (c *Client) SetAuthToken(token string) { |
| 81 | c.authToken = token |
| 82 | } |
| 83 | |
| 84 | // Health checks if the server is running. |
| 85 | func (c *Client) Health() error { |
no outgoing calls
no test coverage detected