add wechat share

This commit is contained in:
2025-10-24 16:35:39 +08:00
parent a258c360c2
commit 9629b92a33
5 changed files with 258 additions and 12 deletions

View File

@@ -1061,6 +1061,11 @@ func RegisterHandlers(server *rest.Server, serverCtx *svc.ServiceContext) {
Path: "/user/wxh5Auth",
Handler: user.WxH5AuthHandler(serverCtx),
},
{
Method: http.MethodPost,
Path: "/wechat/getSignature",
Handler: user.GetSignatureHandler(serverCtx),
},
},
rest.WithPrefix("/api/v1"),
)