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