6
0

refactor(services/game): 修改获取游戏版本的 API 路径

This commit is contained in:
余 欣怀 2025-06-20 19:12:43 +08:00
parent 089a9091ec
commit 6d3f8d8232

View File

@ -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
}