aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Server.Implementations/Persistence/IDbConnector.cs
blob: cac9fe983517897f9a181fa744694293118ac81c (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);
    }
}