diff --git a/infra/response.go b/infra/response.go index c23971b..8fd9eb2 100644 --- a/infra/response.go +++ b/infra/response.go @@ -15,12 +15,11 @@ type Reply struct { func (reply *Reply) Success(ctx *gin.Context, data any) { reply.Code = 200 + reply.Data = data if data == nil { reply.Data = "" } - ctx.JSON(200, reply) - return } func (reply *Reply) Error(ctx *gin.Context, err error) { reply.Code = 500 @@ -34,5 +33,4 @@ func (reply *Reply) Error(ctx *gin.Context, err error) { // Send error ctx.JSON(200, reply) - return }