mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2025-12-31 20:54:31 +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
12 lines
220 B
C#
12 lines
220 B
C#
using System.Threading.Tasks;
|
|
|
|
namespace BTCPayServer.Abstractions.Contracts
|
|
{
|
|
public interface IPluginHookFilter
|
|
{
|
|
public string Hook { get; }
|
|
|
|
Task<object> Execute(object args);
|
|
}
|
|
}
|