Files
Go-Template/http_handlers/errors/notfound.go

11 lines
196 B
Go

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"})
}