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