mirror of
https://github.com/TeaOSLab/EdgeAdmin.git
synced 2025-11-03 20:40:26 +08:00
24 lines
726 B
Go
24 lines
726 B
Go
package transfer
|
|
|
|
import (
|
|
"github.com/TeaOSLab/EdgeAdmin/internal/configloaders"
|
|
"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(settingutils.NewAdvancedHelper("transfer")).
|
|
Prefix("/settings/transfer").
|
|
Get("", new(IndexAction)).
|
|
Post("/validateAPI", new(ValidateAPIAction)).
|
|
Post("/updateHosts", new(UpdateHostsAction)).
|
|
Post("/upgradeNodes", new(UpgradeNodesAction)).
|
|
Post("/statNodes", new(StatNodesAction)).
|
|
EndAll()
|
|
})
|
|
}
|