mirror of
https://gitee.com/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat.git
synced 2025-09-20 02:29:40 +08:00
feat(work): 导入企业微信 API 客户端项目
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
using System;
|
||||
|
||||
namespace SKIT.FlurlHttpClient.Wechat.Work.UnitTests
|
||||
{
|
||||
class TestClients
|
||||
{
|
||||
static TestClients()
|
||||
{
|
||||
Instance = new WechatWorkClient(new WechatWorkClientOptions()
|
||||
{
|
||||
CorpId = TestConfigs.WechatCorpId,
|
||||
AgentId = TestConfigs.WechatAgentId,
|
||||
AgentSecret = TestConfigs.WechatAgentSecret
|
||||
});
|
||||
}
|
||||
|
||||
public static readonly WechatWorkClient Instance;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user