面包店
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

14 lines
210 B

  1. package router
  2. import (
  3. "applet/app/bigData/hdl"
  4. "applet/app/ipad/mw"
  5. "github.com/gin-gonic/gin"
  6. )
  7. func BigDataInit(r *gin.RouterGroup) {
  8. r.POST("/test", hdl.Demo)
  9. r.Use(mw.Auth) //检测登录状态
  10. }