gorss/handler_err.go
2025-06-24 21:33:09 +02:00

8 lines
139 B
Go

package main
import "net/http"
func HandlerErrorResponse(w http.ResponseWriter, r *http.Request) {
respondWithError(w, 400, "ups...")
}