Client is an HTTP client for the docker agent server API
| 21 | |
| 22 | // Client is an HTTP client for the docker agent server API |
| 23 | type Client struct { |
| 24 | baseURL *url.URL |
| 25 | httpClient *http.Client |
| 26 | authToken string |
| 27 | registry map[string]func() Event |
| 28 | } |
| 29 | |
| 30 | // ClientOption is a function for configuring the Client |
| 31 | type ClientOption func(*Client) |
nothing calls this directly
no outgoing calls
no test coverage detected