1
0
mirror of https://github.com/silenceper/wechat.git synced 2026-02-10 15:52:26 +08:00

企业微信-通讯录管理 (#601)

This commit is contained in:
markwang
2022-08-14 19:54:33 +08:00
committed by GitHub
parent 37f9e981d6
commit cac3072199
5 changed files with 130 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
package addresslist
import (
"github.com/silenceper/wechat/v2/work/context"
)
// Client 通讯录管理接口实例
type Client struct {
*context.Context
}
// NewClient 初始化实例
func NewClient(ctx *context.Context) *Client {
return &Client{
ctx,
}
}