| 9 | ) |
| 10 | |
| 11 | type HttpTestReq struct { |
| 12 | Method string `json:"method"` // GET / POST / PUT / DELETE |
| 13 | URL string `json:"url"` |
| 14 | Header map[string]string `json:"header"` |
| 15 | Body string `json:"body"` |
| 16 | } |
| 17 | |
| 18 | type HttpTestResp struct { |
| 19 | Status string `json:"status"` |
nothing calls this directly
no outgoing calls
no test coverage detected