8 lines
139 B
Go
8 lines
139 B
Go
package main
|
|
|
|
import "net/http"
|
|
|
|
func HandlerErrorResponse(w http.ResponseWriter, r *http.Request) {
|
|
respondWithError(w, 400, "ups...")
|
|
}
|