2020-08-21 21:09:42 +08:00
|
|
|
package components
|
|
|
|
|
|
|
|
|
|
import (
|
2020-09-13 20:37:07 +08:00
|
|
|
"github.com/TeaOSLab/EdgeAdmin/internal/web/actions/default/servers/components/componentutils"
|
2020-08-21 21:09:42 +08:00
|
|
|
"github.com/TeaOSLab/EdgeAdmin/internal/web/helpers"
|
|
|
|
|
"github.com/iwind/TeaGo"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
|
TeaGo.BeforeStart(func(server *TeaGo.Server) {
|
|
|
|
|
server.
|
|
|
|
|
Helper(helpers.NewUserMustAuth()).
|
|
|
|
|
Helper(NewHelper()).
|
2020-09-13 20:37:07 +08:00
|
|
|
Helper(componentutils.NewComponentHelper()).
|
2020-08-21 21:09:42 +08:00
|
|
|
Prefix("/servers/components").
|
2020-10-02 17:22:24 +08:00
|
|
|
GetPost("", new(IndexAction)).
|
2020-08-21 21:09:42 +08:00
|
|
|
EndAll()
|
|
|
|
|
})
|
|
|
|
|
}
|