From 08b4ec5562713427f84df7a319978df14fc31b00 Mon Sep 17 00:00:00 2001 From: huangjiajun <582604932@qq.com> Date: Tue, 3 Dec 2024 19:04:21 +0800 Subject: [PATCH] =?UTF-8?q?=E6=89=93=E5=8C=85?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/router/router.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/router/router.go b/app/router/router.go index e0d33eb..e68a19f 100644 --- a/app/router/router.go +++ b/app/router/router.go @@ -69,7 +69,7 @@ func route(r *gin.RouterGroup) { r.GET("/cloudBundle/base", cloud_bundle.Base) //打包基本信息 r.POST("/cloudBundle/update/state", cloud_bundle.UpdateState) //打包更新状态 r.POST("/cloudBundle/upload", cloud_bundle.Upload) //打包 上传apk - r.GET("/getSTSVoucher", comm.GetSTSVoucher) // 获取 STS 凭证 + r.GET("/getSTSVoucher", comm.GetSTSVoucher) // 获取 STS 凭证 } r.Use(mw.Auth) // 以下接口需要JWT验证 rComm(r.Group("/comm"))