mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-22 22:25:28 +01:00
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
10 lines
203 B
C#
10 lines
203 B
C#
using System.Threading.Tasks;
|
|
|
|
namespace BTCPayServer.Abstractions.Contracts
|
|
{
|
|
public interface IPluginHookAction
|
|
{
|
|
public string Hook { get; }
|
|
Task Execute(object args);
|
|
}
|
|
}
|