Client defines the API client interface.
| 38 | type ( |
| 39 | // Client defines the API client interface. |
| 40 | Client struct { |
| 41 | client *http.Client |
| 42 | common service |
| 43 | |
| 44 | BasePath string // API endpoint base URL |
| 45 | UserAgent string // optional additional User-Agent fragment |
| 46 | apiKey string |
| 47 | |
| 48 | DNS *DNSService |
| 49 | Run *RunService |
| 50 | } |
| 51 | |
| 52 | service struct { |
| 53 | client *Client |
nothing calls this directly
no outgoing calls
no test coverage detected