(w http.ResponseWriter, r *http.Request)
| 12 | } |
| 13 | |
| 14 | func (h *Handler) Create(w http.ResponseWriter, r *http.Request) { |
| 15 | fmt.Println("Can't create comment, no user ID") |
| 16 | w.WriteHeader(http.StatusInternalServerError) |
| 17 | w.Write([]byte(http.StatusText(http.StatusInternalServerError))) |
| 18 | } |
nothing calls this directly
no test coverage detected