()
| 29 | } |
| 30 | |
| 31 | func (e *HTTPError) Error() string { |
| 32 | return fmt.Sprintf("HTTP %d: %s, Details: %v", e.StatusCode, e.Message, e.Details) |
| 33 | } |
| 34 | |
| 35 | func NewClient(apiKey, baseURL string) *Client { |
| 36 | return &Client{ |
nothing calls this directly
no outgoing calls
no test coverage detected