helpers.go 190 B

12345678
  1. package web
  2. import "net/http"
  3. // BadRequest writes a 400 response with the given message.
  4. func BadRequest(w http.ResponseWriter, msg string) {
  5. http.Error(w, msg, http.StatusBadRequest)
  6. }