Files
open-im-server/pkg/apiresp/gin.go
T

15 lines
242 B
Go
Raw Normal View History

2023-06-30 09:45:02 +08:00
package apiresp
import (
"github.com/gin-gonic/gin"
"net/http"
)
func GinError(c *gin.Context, err error) {
c.JSON(http.StatusOK, ParseError(err))
}
func GinSuccess(c *gin.Context, data any) {
c.JSON(http.StatusOK, ApiSuccess(data))
}