blob: 2092f830a716537d0eba51d52451c3effc715cec (
plain)
1
2
3
4
5
6
7
8
9
10
|
using System.Data;
using System.Threading.Tasks;
namespace MediaBrowser.Server.Implementations.Persistence
{
public interface IDbConnector
{
Task<IDbConnection> Connect(string dbPath, int? cacheSize = null);
}
}
|