jellyfin-server/MediaBrowser.Server.Implementations/Persistence/IDbConnector.cs
2016-06-10 12:45:04 -04:00

11 lines
236 B
C#

using System.Data;
using System.Threading.Tasks;
namespace MediaBrowser.Server.Implementations.Persistence
{
public interface IDbConnector
{
Task<IDbConnection> Connect(string dbPath, int? cacheSize = null);
}
}