From b75973df17be20c93348e9ef4a182a49a5af81f9 Mon Sep 17 00:00:00 2001 From: jhc Date: Fri, 9 May 2025 16:26:46 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pkg/service/base.go | 9 --------- 1 file changed, 9 deletions(-) diff --git a/pkg/service/base.go b/pkg/service/base.go index 794b54f..0246402 100644 --- a/pkg/service/base.go +++ b/pkg/service/base.go @@ -134,12 +134,3 @@ func translateErrorMessage(c *gin.Context, message string) string { return common.EnMessages[message] } } - -func ResponseQuickMsg(c *gin.Context, Status uint8, Msg string, Data interface{}) { - //var c gin.Context - c.JSON(http.StatusOK, gin.Response{ - Status: int(Status), - Msg: Msg, - Data: Data, - }) -}