(w http.ResponseWriter, r *http.Request)
| 9 | ) |
| 10 | |
| 11 | func httpOK(w http.ResponseWriter, r *http.Request) { |
| 12 | w.WriteHeader(http.StatusOK) |
| 13 | } |
| 14 | |
| 15 | func httpReadBody(w http.ResponseWriter, r *http.Request) { |
| 16 | _, _ = io.Copy(io.Discard, r.Body) |
nothing calls this directly
no test coverage detected