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
+13
View File
@@ -0,0 +1,13 @@
package wxface
// IWXConnectMgr 微信链接管理器
type IWXConnectMgr interface {
Add(wxConnect IWXConnect) // 添加链接
GetWXConnectByUserInfoUUID(userInfoUUID string) IWXConnect // 根据UserInfoUUID获取微信链接
GetWXConnectByWXID(wxid string) IWXConnect // 根据WXID获取微信链接
Remove(wxconn IWXConnect) // 删除连接
Len() int // 获取当前连接
ClearWXConn() // 删除并停止所有链接
ShowConnectInfo() string // 打印链接数量
GetConnectInfo() map[string]interface{} // 打印链接信息
}