2022-03-02 16:32:27 +01:00

13 lines
205 B
Go

package api
import (
"github.com/gin-gonic/gin"
)
func (s *Service) Error(c *gin.Context, code int, err error) {
c.AbortWithStatusJSON(code, gin.H{
"status": "failed",
"error": err.Error(),
})
}