mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-06-23 15:30:56 -04:00
12 lines
281 B
C#
12 lines
281 B
C#
using System.Data;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace MediaBrowser.Server.Implementations.Persistence
|
|
{
|
|
public interface IDbConnector
|
|
{
|
|
Task<IDbConnection> Connect(string dbPath);
|
|
void BindSimilarityScoreFunction(IDbConnection connection);
|
|
}
|
|
}
|