forked from TrueCloudLab/certificates
Expose a way to update the transport.
This commit is contained in:
parent
c42265972a
commit
888ef147fa
1 changed files with 5 additions and 0 deletions
|
@ -258,6 +258,11 @@ func NewClient(endpoint string, opts ...ClientOption) (*Client, error) {
|
||||||
}, nil
|
}, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// SetTransport updates the transport of the internal HTTP client.
|
||||||
|
func (c *Client) SetTransport(tr http.RoundTripper) {
|
||||||
|
c.client.Transport = tr
|
||||||
|
}
|
||||||
|
|
||||||
// Health performs the health request to the CA and returns the
|
// Health performs the health request to the CA and returns the
|
||||||
// api.HealthResponse struct.
|
// api.HealthResponse struct.
|
||||||
func (c *Client) Health() (*api.HealthResponse, error) {
|
func (c *Client) Health() (*api.HealthResponse, error) {
|
||||||
|
|
Loading…
Reference in a new issue