online_code/route/router.go

9 lines
145 B
Go
Raw Normal View History

package route
import "github.com/gin-gonic/gin"
func InitRoute(g *gin.RouterGroup) {
api := g.Group("/api")
problem(api.Group("/problem"))
}