Waste/Nirvana.Common/Cache/CacheFactory.cs

15 lines
233 B
C#
Raw Normal View History

2021-05-27 16:58:40 +08:00
using System;
using System.Collections.Generic;
using System.Text;
namespace Nirvana.Common
{
public class CacheFactory
{
public static ICaches Cache()
{
return new Caches();
}
}
}