实现基础的实名认证功能(商业版本专有,开源版本只显示认证状态)

This commit is contained in:
GoEdgeLab
2022-07-24 09:57:26 +08:00
parent 8e5019d8d2
commit 687e667070
8 changed files with 163 additions and 5 deletions

View File

@@ -0,0 +1,14 @@
// Copyright 2022 Liuxiangchao iwind.liu@gmail.com. All rights reserved. Official site: https://goedge.cn .
package files
import "github.com/iwind/TeaGo"
func init() {
TeaGo.BeforeStart(func(server *TeaGo.Server) {
server.
Prefix("/files").
Get("/file", new(FileAction)).
EndAll()
})
}