package ech 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.AdminModuleCodeHttpDNS)). Data("teaMenu", "httpdns"). Data("teaSubMenu", "ech"). Prefix("/httpdns/ech"). Get("", new(IndexAction)). Get("/audit", new(AuditAction)). GetPost("/rollbackMfaPopup", new(RollbackMfaPopupAction)). EndAll() }) }