forked from lxh/go-wxhelper
22 lines
479 B
Go
22 lines
479 B
Go
package wxhelper
|
|
|
|
import robotModel "wechat-robot/model/robot"
|
|
|
|
// GetContactList
|
|
// @description: 获取联系人列表
|
|
// @receiver wx
|
|
// @return []robotModel.FriendItem
|
|
func (wx wxHelper) GetContactList() (friends []robotModel.FriendItem) {
|
|
|
|
return
|
|
}
|
|
|
|
// GetContactProfile
|
|
// @description: 获取好友资料
|
|
// @receiver wx
|
|
// @param wxId
|
|
// @return robotModel.ContactProfile
|
|
func (wx wxHelper) GetContactProfile(wxId string) (profile robotModel.ContactProfile) {
|
|
return
|
|
}
|