package admins 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.AdminModuleCodeAdmin)). Data("teaMenu", "admins"). Prefix("/admins"). Get("", new(IndexAction)). GetPost("/createPopup", new(CreatePopupAction)). GetPost("/update", new(UpdateAction)). Post("/delete", new(DeleteAction)). Get("/admin", new(AdminAction)). Get("/otpQrcode", new(OtpQrcodeAction)). EndAll() }) }