Browse Source

文章

master
huangjiajun 1 day ago
parent
commit
d9446fa4dd
1 changed files with 3 additions and 3 deletions
  1. +3
    -3
      app/router/router.go

+ 3
- 3
app/router/router.go View File

@@ -65,9 +65,9 @@ func route(r *gin.RouterGroup) {
r.POST("/login", hdl.Login)
{
//打包机调用,不需要校验
r.GET("/cloudBundle/base", cloud_bundle.Base) //打包基本信息
r.GET("/cloudBundle/update/state", cloud_bundle.UpdateState) //打包更新状态
r.GET("/cloudBundle/upload", cloud_bundle.Upload) //打包 上传apk
r.GET("/cloudBundle/base", cloud_bundle.Base) //打包基本信息
r.POST("/cloudBundle/update/state", cloud_bundle.UpdateState) //打包更新状态
r.POST("/cloudBundle/upload", cloud_bundle.Upload) //打包 上传apk
}
r.Use(mw.Auth) // 以下接口需要JWT验证
rComm(r.Group("/comm"))


Loading…
Cancel
Save