当迁移了管理平台后,自动跳转到确认API配置页

This commit is contained in:
刘祥超
2021-11-21 15:57:13 +08:00
parent ac39908737
commit 749eac74fe
11 changed files with 406 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
package confirm
import "github.com/iwind/TeaGo"
func init() {
TeaGo.BeforeStart(func(server *TeaGo.Server) {
server.
Helper(new(Helper)).
Prefix("/setup/confirm").
GetPost("", new(IndexAction)).
EndAll()
})
}