DotNetCore.SKIT.FlurlHttpCl.../test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/TestClients.cs
2022-01-21 09:53:46 +08:00

18 lines
480 B
C#

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;
}
}