(w http.ResponseWriter, r *http.Request)
| 224 | type voidHandler struct{} |
| 225 | |
| 226 | func (voidHandler) ServeHTTP(w http.ResponseWriter, r *http.Request) { |
| 227 | w.WriteHeader(http.StatusNotFound) |
| 228 | w.Write([]byte(http.StatusText(http.StatusNotFound))) |
| 229 | } |