mirror of
https://github.com/TeaOSLab/EdgeAdmin.git
synced 2025-11-04 05:00:25 +08:00
26 lines
694 B
Go
26 lines
694 B
Go
package metrics
|
|
|
|
import (
|
|
"github.com/TeaOSLab/EdgeAdmin/internal/configloaders"
|
|
"github.com/TeaOSLab/EdgeAdmin/internal/web/helpers"
|
|
"github.com/iwind/TeaGo"
|
|
)
|
|
|
|
func init() {
|
|
TeaGo.BeforeStart(func(server *TeaGo.Server) {
|
|
server.
|
|
Helper(helpers.NewUserMustAuth(configloaders.AdminModuleCodeServer)).
|
|
Data("teaMenu", "servers").
|
|
Data("teaSubMenu", "metric").
|
|
Prefix("/servers/metrics").
|
|
Get("", new(IndexAction)).
|
|
GetPost("/createPopup", new(CreatePopupAction)).
|
|
GetPost("/update", new(UpdateAction)).
|
|
Post("/delete", new(DeleteAction)).
|
|
Get("/item", new(ItemAction)).
|
|
Get("/charts", new(ChartsAction)).
|
|
Get("/stats", new(StatsAction)).
|
|
EndAll()
|
|
})
|
|
}
|