mirror of
https://gitee.com/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat.git
synced 2025-07-15 14:04:32 +08:00
17 lines
442 B
C#
17 lines
442 B
C#
namespace SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests
|
|
{
|
|
class TestClients
|
|
{
|
|
static TestClients()
|
|
{
|
|
Instance = new WechatTenpayClient(new WechatTenpayClientOptions()
|
|
{
|
|
MerchantId = TestConfigs.WechatMerchantId,
|
|
MerchantSecret = TestConfigs.WechatMerchantSecret
|
|
});
|
|
}
|
|
|
|
public static readonly WechatTenpayClient Instance;
|
|
}
|
|
}
|