router.go 837 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  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. Order(_3dshow)
  19. // 收藏
  20. Collect(_3dshow)
  21. }
  22. func Logger() gin.HandlerFunc {
  23. return func(c *gin.Context) {
  24. // 开始时间
  25. // start := time.Now()
  26. // 处理请求
  27. c.Next()
  28. // 结束时间
  29. // end := time.Now()
  30. //执行时间
  31. // latency := end.Sub(start)
  32. path := c.Request.URL.Path
  33. clientIP := c.ClientIP()
  34. // method := c.Request.Method
  35. // statusCode := c.Writer.Status()
  36. out := fmt.Sprintf("%15s=> %s", clientIP, path)
  37. fmt.Println(out)
  38. }
  39. }