18 lines
404 B
Go
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)
|
|
}
|