2021-08-27 11:03:47 -04:00
|
|
|
using System.Threading.Tasks;
|
2020-06-13 19:36:43 +02:00
|
|
|
|
|
|
|
namespace PluralKit.Core
|
|
|
|
{
|
|
|
|
public interface IDatabase
|
|
|
|
{
|
2020-06-13 19:54:16 +02:00
|
|
|
Task ApplyMigrations();
|
2020-06-13 19:36:43 +02:00
|
|
|
Task<IPKConnection> Obtain();
|
|
|
|
}
|
|
|
|
}
|