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

添加企业微信外部联系部分的 sdk (#562)

This commit is contained in:
bear
2022-04-27 23:50:28 +08:00
committed by GitHub
parent e952b1d55a
commit 182339c00f
6 changed files with 433 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
package externalcontact
import (
"github.com/silenceper/wechat/v2/work/context"
)
// Client 外部联系接口实例
type Client struct {
*context.Context
}
// NewClient 初始化实例
func NewClient(ctx *context.Context) *Client {
return &Client{
ctx,
}
}