package apiresp import ( "github.com/gin-gonic/gin" "net/http" ) func GinError(c *gin.Context, err error) { c.JSON(http.StatusOK, ApiError(err)) } func GinSuccess(c *gin.Context, data any) { c.JSON(http.StatusOK, ApiSuccess(data)) }