mirror of
https://github.com/PluralKit/PluralKit.git
synced 2026-02-04 13:06:50 +00:00
10 lines
No EOL
175 B
C#
10 lines
No EOL
175 B
C#
using System.Threading.Tasks;
|
|
|
|
namespace PluralKit.Core
|
|
{
|
|
public interface IDatabase
|
|
{
|
|
Task ApplyMigrations();
|
|
Task<IPKConnection> Obtain();
|
|
}
|
|
} |