15 lines
268 B
C#
Raw Normal View History

2025-03-17 08:35:19 +08:00
using FreeRedis;
2025-04-17 20:28:50 +08:00
namespace JiShe.CollectBus.FreeRedis
2025-03-17 08:35:19 +08:00
{
public interface IFreeRedisProvider
{
/// <summary>
/// 获取客户端
/// </summary>
/// <returns></returns>
2025-04-16 17:36:46 +08:00
RedisClient Instance { get; set; }
2025-03-17 08:35:19 +08:00
}
}