Files
Alchegos.Webhook/Handlers/IWebhookEventHandler.cs
2025-03-13 11:00:11 +00:00

9 lines
223 B
C#

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