JsonDB/JsonDBFactory.cs

13 lines
248 B
C#

using DevJsonDB.IO;
namespace DevJsonDB;
public static class JsonDBFactory
{
public static JsonDB<T> CreateDB<T>(string filePath)
{
IStore<T> store = new LocalStore<T>(filePath, true);
return new JsonDB<T>(store);
}
}