DotNetCore.SKIT.FlurlHttpCl.../test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/TestClients.cs

20 lines
495 B
C#

using System;
namespace SKIT.FlurlHttpClient.Wechat.Ads.UnitTests
{
class TestClients
{
static TestClients()
{
Instance = new WechatAdsClient(new WechatAdsClientOptions()
{
AgencyId = TestConfigs.WechatAgencyId,
AgencyAppId = TestConfigs.WechatAgencyAppId,
AgencyApiKey = TestConfigs.WechatAgencyApiKey
});
}
public static readonly WechatAdsClient Instance;
}
}