This repository has been archived on 2024-08-30. You can view files and clone it, but cannot push or open issues or pull requests.
RaceBot/helper/reponse.go
2023-04-15 16:23:34 +07:00

33 lines
598 B
Go

package helper
import (
"github.com/gin-gonic/gin"
"net/http"
)
// ResponseData : response format
type ResponseData struct {
Success bool `json:"success"`
Message string `json:"message"`
Data interface{} `json:"data"`
}
// RespondJSON : send a proper response json to the client
func RespondJSON(w *gin.Context, status int, message string, payload interface{}) {
var res ResponseData
if status >= 200 && status < 300 {
res.Success = true
}
if len(message) != 0 {
res.Message = message
}
if payload != nil {
res.Data = payload
}
w.JSON(http.StatusOK, res)
}