From 00eba5cc759cde658afc92eb83e9ea2bf3c3f3c4 Mon Sep 17 00:00:00 2001 From: Yun Date: Wed, 22 Jul 2026 01:19:46 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9gin=E5=8C=85=E4=B8=BAginx?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- {gin => ginx}/gin.go | 2 +- {gin => ginx}/gin_test.go | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) rename {gin => ginx}/gin.go (98%) rename {gin => ginx}/gin_test.go (98%) diff --git a/gin/gin.go b/ginx/gin.go similarity index 98% rename from gin/gin.go rename to ginx/gin.go index e56398d..2d74065 100644 --- a/gin/gin.go +++ b/ginx/gin.go @@ -1,4 +1,4 @@ -package gin +package ginx import ( "code.yun.ink/pkg/responsex" diff --git a/gin/gin_test.go b/ginx/gin_test.go similarity index 98% rename from gin/gin_test.go rename to ginx/gin_test.go index 035233c..64d30c5 100644 --- a/gin/gin_test.go +++ b/ginx/gin_test.go @@ -1,4 +1,4 @@ -package gin_test +package ginx_test import ( "encoding/json" @@ -7,7 +7,7 @@ import ( "testing" "code.yun.ink/pkg/responsex" - respgin "code.yun.ink/pkg/responsex/gin" + respgin "code.yun.ink/pkg/responsex/ginx" "github.com/gin-gonic/gin" )