package route import ( "github.com/gin-gonic/gin" ) func Initial(r *gin.Engine) { r.Static("/asset", "./asset") h5RouteInit(r) adminRouteInit(r) }