1234567891011121314 |
- package router
- import (
- "github.com/gin-gonic/gin"
- "github.com/product-definition/controller"
- )
- func Http(g *gin.Engine) {
- api := g.Group("/api")
- api.POST("/testHello", controller.TestGet)
- api.POST("/getConfig", controller.GetConfig)
- }
|