| 17 | } |
| 18 | |
| 19 | type Response struct { |
| 20 | Status int |
| 21 | http.Header |
| 22 | Body []byte |
| 23 | } |
| 24 | |
| 25 | func (r Response) String() string { |
| 26 | return fmt.Sprintf("{Status: %q, Header: %v, body: %v}", r.Status, r.Header, string(r.Body)) |
nothing calls this directly
no outgoing calls
no test coverage detected