mirror of
https://gitee.com/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat.git
synced 2025-04-05 17:37:54 +08:00
20 lines
495 B
C#
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;
|
|
}
|
|
}
|