Полная зачистка legacy + закрытие fix24.1/fix24.2 + обновление логотипа
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
package router
|
||||
|
||||
import (
|
||||
"github.com/gin-gonic/gin"
|
||||
"hy2xs-admin/controller"
|
||||
)
|
||||
|
||||
func initDashboardRouter(api *gin.RouterGroup) {
|
||||
dashboard := api.Group("/dashboard")
|
||||
{
|
||||
dashboard.GET("/summary", controller.DashboardSummary)
|
||||
dashboard.GET("/timeseries", controller.DashboardTimeseries)
|
||||
dashboard.GET("/top-peers", controller.DashboardTopPeers)
|
||||
dashboard.GET("/security", controller.DashboardSecurity)
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user