()
| 116 | } |
| 117 | |
| 118 | func (c *Client) transport() RoundTripper { |
| 119 | if c.Transport != nil { |
| 120 | return c.Transport |
| 121 | } |
| 122 | return DefaultTransport |
| 123 | } |
| 124 | |
| 125 | func (c *Client) timeout(ctx context.Context, defaultTimeout time.Duration) time.Duration { |
| 126 | timeout := c.Timeout |
no outgoing calls
no test coverage detected