feat(wxads): 导入微信广告平台 API 客户端项目

This commit is contained in:
Fu Diwei
2021-06-11 18:31:10 +08:00
parent 943da4b527
commit c414de558b
16 changed files with 542 additions and 1 deletions

View File

@@ -0,0 +1,19 @@
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;
}
}