mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-01-18 21:32:27 +01:00
179520a211
This allows plugins to create custom dbcontexts, which would be namespaced in the scheme with a prefix. Migrations are supported too and the table would be prefixed too
11 lines
225 B
C#
11 lines
225 B
C#
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace BTCPayServer.Abstractions.Contracts
|
|
{
|
|
public interface IStartupTask
|
|
{
|
|
Task ExecuteAsync(CancellationToken cancellationToken = default);
|
|
}
|
|
}
|