gin-server/lib/app/response.go

27 lines
442 B
Go
Raw Normal View History

2019-11-02 12:54:10 +00:00
package app
import (
"github.com/gin-gonic/gin"
"gin-server/lib/messages"
)
type Gin struct {
C *gin.Context
}
type Response struct {
Code int `json:"code"`
Msg string `json:"msg"`
Data interface{} `json:"data"`
}
// Response setting gin.JSON
func (g *Gin) Response(httpCode, errCode int, data interface{}) {
g.C.JSON(httpCode, Response{
Code: errCode,
Msg: messages.GetMsg(errCode),
Data: data,
})
return
}