first commit

This commit is contained in:
2026-02-17 13:06:23 +08:00
commit 7cbd3d061d
349 changed files with 126558 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
package wxface
import "xiawan/wx/srv"
// IWXServer 微信服务
type IWXServer interface {
Start()
GetWXMsgHandler() IWXMsgHandler
GetWXConnectMgr() IWXConnectMgr
GetWXFileMgr() *srv.WXFileMgr
AddWXRouter(funcID uint32, wxRouter IWXRouter)
// UpdateExpiryDate 更新授权码过期时间
UpdateExpiryDate(key, expiryDate string)
// 更新禁用状态
UpdateDisable(key string, disable int)
}