first commit
This commit is contained in:
@@ -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{} // 打印链接信息
|
||||
}
|
||||
Reference in New Issue
Block a user