btcpayserver/BTCPayServer.Abstractions/Contracts/IPluginHookService.cs

10 lines
231 B
C#
Raw Normal View History

using System.Threading.Tasks;
namespace BTCPayServer.Contracts
{
public interface IPluginHookService
{
Task ApplyAction(string hook, object args);
Task<object> ApplyFilter(string hook, object args);
}
}