Extract Database to interface

This commit is contained in:
Ske
2020-06-13 19:36:43 +02:00
parent 70df9cd893
commit 90ac186183
27 changed files with 76 additions and 54 deletions

View File

@@ -0,0 +1,9 @@
using System.Threading.Tasks;
namespace PluralKit.Core
{
public interface IDatabase
{
Task<IPKConnection> Obtain();
}
}