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