( debug bool, operationId string, header map[string]string, timeout time.Duration, maxAttempts int, insecure bool)
| 14 | } |
| 15 | |
| 16 | func NewHttpClientSettings( |
| 17 | debug bool, |
| 18 | operationId string, |
| 19 | header map[string]string, |
| 20 | timeout time.Duration, |
| 21 | maxAttempts int, |
| 22 | insecure bool) *HttpClientSettings { |
| 23 | return &HttpClientSettings{ |
| 24 | debug, |
| 25 | operationId, |
| 26 | header, |
| 27 | timeout, |
| 28 | maxAttempts, |
| 29 | insecure, |
| 30 | } |
| 31 | } |
no outgoing calls
no test coverage detected