Files
DotNetCore.SKIT.FlurlHttpCl…/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/TestClients.cs

18 lines
487 B
C#
Raw Normal View History

namespace SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests
{
2022-01-21 10:09:50 +08:00
internal class TestClients
{
static TestClients()
{
Instance = new WechatChatbotClient(new WechatChatbotClientOptions()
2022-01-21 10:09:50 +08:00
{
2021-10-11 18:34:21 +08:00
AppId = TestConfigs.WechatAppId,
Token = TestConfigs.WechatToken,
EncodingAESKey = TestConfigs.WechatEncodingAESKey
});
}
public static readonly WechatChatbotClient Instance;
}
}