9 lines
217 B
C#
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);
|
|
} |