mirror of
https://gitee.com/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat.git
synced 2025-07-15 23:13:32 +08:00
19 lines
424 B
C#
19 lines
424 B
C#
using System;
|
|
|
|
namespace SKIT.FlurlHttpClient.Wechat.Api.UnitTests
|
|
{
|
|
class TestClients
|
|
{
|
|
static TestClients()
|
|
{
|
|
Instance = new WechatApiClient(new WechatApiClientOptions()
|
|
{
|
|
AppId = TestConfigs.WechatAppId,
|
|
AppSecret = TestConfigs.WechatAppSecret
|
|
});
|
|
}
|
|
|
|
public static readonly WechatApiClient Instance;
|
|
}
|
|
}
|