From 6d3f8d82326ef807452538339e02497dfb910d1d Mon Sep 17 00:00:00 2001 From: yuxh Date: Fri, 20 Jun 2025 19:12:43 +0800 Subject: [PATCH] =?UTF-8?q?refactor(services/game):=20=E4=BF=AE=E6=94=B9?= =?UTF-8?q?=E8=8E=B7=E5=8F=96=E6=B8=B8=E6=88=8F=E7=89=88=E6=9C=AC=E7=9A=84?= =?UTF-8?q?=20API=20=E8=B7=AF=E5=BE=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- services/game/game.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/game/game.go b/services/game/game.go index 5c455e6..026c854 100644 --- a/services/game/game.go +++ b/services/game/game.go @@ -279,7 +279,7 @@ func CreateGetGameVersionReq(gameId int, gameVersion string) *GetGameVersionReq } req.GameId = gameId req.GameVersion = gameVersion - req.InitWithApiInfo(HOST, VERSION, "/api/game/getGameByVersion") + req.InitWithApiInfo(HOST, VERSION, "/api/game/getGameVersion") req.Method = requests.POST return req }