| 16 | } |
| 17 | |
| 18 | type HttpTestResp struct { |
| 19 | Status string `json:"status"` |
| 20 | StatusCode int `json:"status_code"` |
| 21 | Header map[string][]string `json:"header"` |
| 22 | Body string `json:"body"` |
| 23 | } |
| 24 | |
| 25 | type HttpTestService struct { |
| 26 | client *http.Client |
nothing calls this directly
no outgoing calls
no test coverage detected