feat: 适配新版sdk

This commit is contained in:
若海
2024-08-26 13:28:25 +08:00
parent 354fd28c00
commit b44a2b070c
21 changed files with 1620 additions and 2523 deletions
+9 -13
View File
@@ -3,33 +3,29 @@ package httpd
import (
"github.com/opentdp/go-helper/httpd"
"wechat-rest/args"
"wechat-rest/httpd/midware"
"wechat-rest/httpd/wcfrest"
"github.com/opentdp/wrest-chat/args"
"github.com/opentdp/wrest-chat/httpd/middle"
"github.com/opentdp/wrest-chat/httpd/wcfrest"
)
// @title WeChat Rest Api
// @title Wrest Chat Api
// @version v0.10.0
// @description 基于 WeChatFerry RPC 实现的微信接口,使用 Go 语言编写,无第三方运行时依赖,易于对接任意编程语言。
// @contact.name WeChatRest
// @contact.url https://github.com/opentdp/wechat-rest
// @contact.url https://github.com/opentdp/wrest-chat
// @license.name Apache 2.0
// @license.url http://www.apache.org/licenses/LICENSE-2.0.html
// @BasePath /api
// @BasePath /
func Server() {
httpd.Engine(args.Debug)
// Api 守卫
api := httpd.Group("/api")
api.Use(midware.OutputHandle, midware.ApiGuard)
// Wcf 路由
wcfrest.Route(api)
// Wcfrest 路由
wcfrest.Route()
// Swagger 守卫
httpd.Use(midware.SwaggerGuard)
httpd.Use(middle.SwaggerGuard)
// 前端文件路由
httpd.StaticEmbed("/", "public", args.Efs)