mirror of
https://gitee.com/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat.git
synced 2025-07-15 23:13:32 +08:00
18 lines
480 B
C#
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;
|
|
}
|
|
}
|