mirror of
https://gitee.com/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat.git
synced 2025-04-05 17:37:54 +08:00
19 lines
442 B
C#
19 lines
442 B
C#
using System;
|
|
|
|
namespace SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests
|
|
{
|
|
class TestClients
|
|
{
|
|
static TestClients()
|
|
{
|
|
Instance = new WechatOpenAIClient(new WechatOpenAIClientOptions()
|
|
{
|
|
ClientId = TestConfigs.WechatClientId,
|
|
ClientKey = TestConfigs.WechatClientKey
|
|
});
|
|
}
|
|
|
|
public static readonly WechatOpenAIClient Instance;
|
|
}
|
|
}
|