refactor: web hook

This commit is contained in:
h z
2025-03-13 11:00:11 +00:00
parent 2715909a41
commit 9f55972e60
13 changed files with 265 additions and 67 deletions

View File

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