您最多选择25个主题
主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
|
- package router
-
- import (
- "applet/app/customer/mw"
- "github.com/gin-gonic/gin"
- )
-
- func CustomerInit(r *gin.RouterGroup) {
- rTest(r.Group("/test"))
- r.Use(mw.Auth) //检测登录状态
-
- }
-
- func rTest(r *gin.RouterGroup) {
- }
|