mirror of
https://gitee.com/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat.git
synced 2025-07-16 07:59:44 +08:00
20 lines
485 B
C#
20 lines
485 B
C#
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;
|
|
}
|
|
}
|