| 279 | var errInvalidHttpRequest = fmt.Errorf("rest_auth: invalid http request") |
| 280 | |
| 281 | type restRequestParser struct { |
| 282 | req *http.Request |
| 283 | } |
| 284 | |
| 285 | func (p *restRequestParser) GetRequest() (interface{}, string) { |
| 286 | return p.req, "REST" |
nothing calls this directly
no outgoing calls
no test coverage detected