| 13 | ) |
| 14 | |
| 15 | type staticReject struct { |
| 16 | status int |
| 17 | body string |
| 18 | } |
| 19 | |
| 20 | func (r staticReject) Validate(_ context.Context, wr http.ResponseWriter, _ *http.Request) (string, bool) { |
| 21 | wr.WriteHeader(r.status) |
nothing calls this directly
no outgoing calls
no test coverage detected