aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Core/Data/IDbConnector.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Emby.Server.Core/Data/IDbConnector.cs')
-rw-r--r--Emby.Server.Core/Data/IDbConnector.cs10
1 files changed, 0 insertions, 10 deletions
diff --git a/Emby.Server.Core/Data/IDbConnector.cs b/Emby.Server.Core/Data/IDbConnector.cs
deleted file mode 100644
index ca6c13dae..000000000
--- a/Emby.Server.Core/Data/IDbConnector.cs
+++ /dev/null
@@ -1,10 +0,0 @@
-using System.Data;
-using System.Threading.Tasks;
-
-namespace Emby.Server.Core.Data
-{
- public interface IDbConnector
- {
- Task<IDbConnection> Connect(string dbPath, bool isReadOnly, bool enablePooling = false, int? cacheSize = null);
- }
-}