面包店
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

ipad_router.go 215 B

8 ay önce
8 ay önce
8 ay önce
8 ay önce
8 ay önce
123456789101112131415
  1. package router
  2. import (
  3. "applet/app/ipad/mw"
  4. "github.com/gin-gonic/gin"
  5. )
  6. func IpadInit(r *gin.RouterGroup) {
  7. rTest(r.Group("/test"))
  8. r.Use(mw.Auth) //检测登录状态
  9. }
  10. func rTest(r *gin.RouterGroup) {
  11. }