router.go 871 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. package api
  2. import (
  3. "fmt"
  4. "github.com/gin-gonic/gin"
  5. )
  6. // RegRouters 注册路由
  7. func RegRouters(svc *Service) {
  8. _3dshow := svc.NewGinRouter("/" + svc.Conf.Name)
  9. _3dshow.group.Use(Logger())
  10. _3dshow.GET("/printr", Printr)
  11. // 供应链管理
  12. Supply(_3dshow)
  13. // 产品管理
  14. Product(_3dshow)
  15. // 地址管理
  16. Address(_3dshow)
  17. // 购物车
  18. ShopCart(_3dshow)
  19. // 订单管理
  20. Order(_3dshow)
  21. // 收藏
  22. Collect(_3dshow)
  23. }
  24. func Logger() gin.HandlerFunc {
  25. return func(c *gin.Context) {
  26. // 开始时间
  27. // start := time.Now()
  28. // 处理请求
  29. c.Next()
  30. // 结束时间
  31. // end := time.Now()
  32. //执行时间
  33. // latency := end.Sub(start)
  34. path := c.Request.URL.Path
  35. clientIP := c.ClientIP()
  36. // method := c.Request.Method
  37. // statusCode := c.Writer.Status()
  38. out := fmt.Sprintf("%15s=> %s", clientIP, path)
  39. fmt.Println(out)
  40. }
  41. }