2021-07-21 08:07:46 +08:00
|
|
|
// Copyright 2021 Liuxiangchao iwind.liu@gmail.com. All rights reserved.
|
|
|
|
|
|
|
|
|
|
package ipbox
|
|
|
|
|
|
|
|
|
|
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)).
|
|
|
|
|
Prefix("/servers/ipbox").
|
|
|
|
|
Get("", new(IndexAction)).
|
2021-08-15 15:42:05 +08:00
|
|
|
Post("/addIP", new(AddIPAction)).
|
2021-07-21 08:07:46 +08:00
|
|
|
EndAll()
|
|
|
|
|
})
|
2021-08-15 15:42:05 +08:00
|
|
|
}
|