Files
wechat_ipad_pro/srv/wxface/iwxserver.go
2026-02-17 13:06:23 +08:00

18 lines
404 B
Go

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)
}