mirror of
https://gitee.com/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat.git
synced 2025-12-29 01:44:42 +08:00
feat(wxads): 导入微信广告平台 API 客户端项目
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user