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