// @APIVersion 1.0.0 // @Title beego Test API // @Description beego has a very cool tools to autogenerate documents for your API // @Contact astaxie@gmail.com // @TermsOfServiceUrl http://beego.me/ // @License Apache 2.0 // @LicenseUrl http://www.apache.org/licenses/LICENSE-2.0.html package routers import ( "eta/eta_hub/controllers" "github.com/beego/beego/v2/server/web" ) func init() { var ns = web.NewNamespace("/v1", web.NSNamespace("/report", web.NSInclude( &controllers.ReportController{}, ), ), web.NSNamespace("/smart_report", web.NSInclude( &controllers.SmartReportController{}, ), ), web.NSNamespace("/edb", web.NSInclude( &controllers.EdbController{}, ), ), web.NSNamespace("/chart", web.NSInclude( &controllers.ChartController{}, ), ), web.NSNamespace("/statistic_analysis", web.NSInclude( &controllers.StatisticAnalysisController{}, ), ), web.NSNamespace("/supply_analysis", web.NSInclude( &controllers.SupplyAnalysisController{}, ), ), web.NSNamespace("/datamanage", web.NSInclude( &controllers.EdbInfoController{}, ), ), web.NSNamespace("/entry", web.NSInclude( &controllers.TradeCommonController{}, ), ), ) web.AddNamespace(ns) }