mirror of
https://gitee.com/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat.git
synced 2025-07-15 14:04:32 +08:00
18 lines
479 B
C#
18 lines
479 B
C#
namespace SKIT.FlurlHttpClient.Wechat.Work.UnitTests
|
|
{
|
|
internal class TestClients
|
|
{
|
|
static TestClients()
|
|
{
|
|
Instance = new WechatWorkClient(new WechatWorkClientOptions()
|
|
{
|
|
CorpId = TestConfigs.WechatCorpId,
|
|
AgentId = TestConfigs.WechatAgentId,
|
|
AgentSecret = TestConfigs.WechatAgentSecret
|
|
});
|
|
}
|
|
|
|
public static readonly WechatWorkClient Instance;
|
|
}
|
|
}
|