| 43 | ) |
| 44 | |
| 45 | type HttpClient struct { |
| 46 | RetryMax uint |
| 47 | Sleep time.Duration |
| 48 | TimeOut time.Duration |
| 49 | ResponseBodyType ResponseBodyTypeEnum |
| 50 | } |
| 51 | |
| 52 | func CreateHttpClient(retryMax uint, |
| 53 | timeOut time.Duration, sleep time.Duration, |
nothing calls this directly
no outgoing calls
no test coverage detected