mirror of
https://github.com/TeaOSLab/EdgeAdmin.git
synced 2025-11-03 20:40:26 +08:00
21 lines
487 B
Go
21 lines
487 B
Go
package components
|
|
|
|
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", "global").
|
|
Helper(NewHelper()).
|
|
Prefix("/servers/components").
|
|
GetPost("", new(IndexAction)).
|
|
EndAll()
|
|
})
|
|
}
|