Files
Alchegos.Webhook/Handlers/IWebhookEventHandler.cs
2025-05-01 23:01:29 +01:00

9 lines
217 B
C#

using System.Text.Json.Nodes;
using Alchegos.Core.Services.RabbitMQ;
namespace Alchegos.Webhook.Handlers;
public interface IWebhookEventHandler
{
Task HandleAsync(JsonNode payload, IRabbitPublisher publisher);
}