mirror of
https://github.com/grassrootseconomics/cic-custodial.git
synced 2024-11-05 15:16:46 +01:00
Mohammed Sohail
add7f2a442
* use context timeout middleware for correct ctx propagation * Fix bind error handling * Fix validation error handling * Fix HTTP error handling (4XX) * tasker client now accepts ctx * add recovery and body size middleware
12 lines
198 B
Go
12 lines
198 B
Go
package api
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"github.com/labstack/echo/v4"
|
|
)
|
|
|
|
func NewBadRequestError(message ...interface{}) *echo.HTTPError {
|
|
return echo.NewHTTPError(http.StatusBadRequest, message...)
|
|
}
|