mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-01-19 05:33:31 +01:00
931505d135
Almost an exact replica of https://developer.wordpress.org/plugins/hooks/ This will allow plugins to extend specific points in business logic, such as validation, invoice payload changes, etc
10 lines
189 B
C#
10 lines
189 B
C#
using System.Threading.Tasks;
|
|
|
|
namespace BTCPayServer.Contracts
|
|
{
|
|
public interface IPluginHookAction
|
|
{
|
|
public string Hook { get; }
|
|
Task Execute(object args);
|
|
}
|
|
} |