面包店
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

customer_router.go 223 B

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