test.go 227 B

12345678910111213
  1. package routers
  2. import (
  3. "github.com/gin-gonic/gin"
  4. "hongze/hongze_yb/controller"
  5. )
  6. func InitTest(r *gin.Engine) {
  7. rGroup := r.Group("test")
  8. rGroup.GET("/test", controller.Test)
  9. rGroup.GET("/test2", controller.Test2)
  10. }