(w http.ResponseWriter, r *http.Request)
| 23 | } |
| 24 | |
| 25 | func httpError(w http.ResponseWriter, r *http.Request) { |
| 26 | w.WriteHeader(http.StatusInternalServerError) |
| 27 | } |
| 28 | |
| 29 | func httpStatusCode(w http.ResponseWriter, r *http.Request) { |
| 30 | w.WriteHeader(http.StatusSwitchingProtocols) |
nothing calls this directly
no test coverage detected