package routers import ( "github.com/gin-gonic/gin" "hongze/fms_api/controller" ) func InitStatistic(baseGroup *gin.RouterGroup) { //统计报告 statisticController := new(controller.StatisticController) statisticGroup := baseGroup.Group("home/") statisticGroup.GET("statistic", statisticController.Statistic) }