File size: 440 Bytes
9853396 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | package api
import (
"net/http"
"github.com/gin-gonic/gin"
"github.com/looplj/axonhub/internal/objects"
)
// JSONError returns a JSON error response and adds the error to gin context for access logging.
func JSONError(c *gin.Context, status int, err error) {
_ = c.Error(err)
c.JSON(status, objects.ErrorResponse{
Error: objects.Error{
Type: http.StatusText(status),
Message: err.Error(),
},
})
}
|