mirror of
https://github.com/openimsdk/open-im-server.git
synced 2025-04-06 04:15:46 +08:00
15 lines
242 B
Go
15 lines
242 B
Go
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))
|
|
}
|