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"))