update go mod

This commit is contained in:
2023-09-10 15:29:35 +08:00
parent e7c13b6089
commit d176a23c53
3 changed files with 48 additions and 180 deletions

View File

@ -67,7 +67,7 @@ func Send(ctx *gin.Context, code interface{}, httpCode int, data interface{}) {
// Author : go_developer@163.com<白茶清欢>
//
// Date : 22:41 2022/6/25
func SendWithStatusOK(ctx *gin.Context, code interface{}, data map[string]interface{}) {
func SendWithStatusOK(ctx *gin.Context, code interface{}, data interface{}) {
Send(ctx, code, http.StatusOK, data)
}