jellyfin-server/MediaBrowser.Server.Implementations/Persistence/IDbConnector.cs

11 lines
213 B
C#
Raw Normal View History

2016-05-01 21:48:37 +00:00
using System.Data;
using System.Threading.Tasks;
namespace MediaBrowser.Server.Implementations.Persistence
{
public interface IDbConnector
{
Task<IDbConnection> Connect(string dbPath);
}
}