package router import ( "applet/app/bigData/hdl" "applet/app/ipad/mw" "github.com/gin-gonic/gin" ) func BigDataInit(r *gin.RouterGroup) { r.POST("/test", hdl.Demo) r.Use(mw.Auth) //检测登录状态 }