http.go 224 B

1234567891011121314
  1. package router
  2. import (
  3. "github.com/gin-gonic/gin"
  4. "base-gin/controller"
  5. )
  6. func Http(g *gin.Engine) {
  7. api := g.Group("/api")
  8. api.POST("/testHello", controller.TestGet)
  9. api.POST("/getConfig", controller.GetConfig)
  10. }