mirror of
https://github.com/TeaOSLab/EdgeAdmin.git
synced 2025-11-05 14:20:25 +08:00
25 lines
757 B
Go
25 lines
757 B
Go
package api
|
|
|
|
import (
|
|
"github.com/TeaOSLab/EdgeAdmin/internal/configloaders"
|
|
"github.com/TeaOSLab/EdgeAdmin/internal/web/actions/default/api/node"
|
|
"github.com/TeaOSLab/EdgeAdmin/internal/web/actions/default/settings/settingutils"
|
|
"github.com/TeaOSLab/EdgeAdmin/internal/web/helpers"
|
|
"github.com/iwind/TeaGo"
|
|
)
|
|
|
|
func init() {
|
|
TeaGo.BeforeStart(func(server *TeaGo.Server) {
|
|
server.
|
|
Helper(helpers.NewUserMustAuth(configloaders.AdminModuleCodeSetting)).
|
|
Helper(NewHelper()).
|
|
Helper(settingutils.NewAdvancedHelper("apiNodes")).
|
|
Prefix("/api").
|
|
Get("", new(IndexAction)).
|
|
Get("/methodStats", new(MethodStatsAction)).
|
|
GetPost("/node/createPopup", new(node.CreatePopupAction)).
|
|
Post("/delete", new(DeleteAction)).
|
|
EndAll()
|
|
})
|
|
}
|