()
| 16 | } |
| 17 | |
| 18 | func (r *Request) ResetBody() error { |
| 19 | if r.body == nil { |
| 20 | return nil |
| 21 | } |
| 22 | |
| 23 | _, err := r.body.Seek(0, 0) |
| 24 | return err |
| 25 | } |
| 26 | |
| 27 | // Params represents URI parameters for a request. |
| 28 | type Params map[string]string |
no test coverage detected