using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using SKIT.FlurlHttpClient.Wechat.Api;
namespace CoreCms.Net.WeChat.Service.HttpClients
{
public interface IWeChatApiHttpClientFactory
{
///
/// 微信公众号请求
///
///
WechatApiClient CreateWeXinClient();
///
/// 微信小程序请求
///
///
WechatApiClient CreateWxOpenClient();
}
}