25 lines
597 B
Go
25 lines
597 B
Go
//go:build plus
|
|
|
|
package test
|
|
|
|
import (
|
|
"github.com/TeaOSLab/EdgeAdmin/internal/configloaders"
|
|
"github.com/TeaOSLab/EdgeAdmin/internal/plus"
|
|
"github.com/TeaOSLab/EdgeAdmin/internal/web/helpers"
|
|
"github.com/iwind/TeaGo"
|
|
)
|
|
|
|
func init() {
|
|
TeaGo.BeforeStart(func(server *TeaGo.Server) {
|
|
server.
|
|
Helper(plus.NewHelper(plus.ComponentCodeNS)).
|
|
Helper(helpers.NewUserMustAuth(configloaders.AdminModuleCodeNS)).
|
|
Data("teaMenu", "ns").
|
|
Data("teaSubMenu", "test").
|
|
Prefix("/ns/test").
|
|
GetPost("", new(IndexAction)).
|
|
Post("/nodeOptions", new(NodeOptionsAction)).
|
|
EndAll()
|
|
})
|
|
}
|