Client is the CloudCent HTTP client.
| 23 | |
| 24 | // Client is the CloudCent HTTP client. |
| 25 | type Client struct { |
| 26 | http *http.Client |
| 27 | Config *config.Config |
| 28 | } |
| 29 | |
| 30 | // New creates a new Client and loads config from disk. |
| 31 | func New() (*Client, error) { |
nothing calls this directly
no outgoing calls
no test coverage detected