package errors import ( "github.com/labstack/echo/v4" "net/http" ) func NewNotFoundError(c echo.Context) error { return c.JSON(http.StatusNotFound, map[string]string{"error": "Not Found"}) }