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

12 lines
325 B
C#

using System.Text.Json.Nodes;
using Alchegos.Core.Services.RabbitMQ;
namespace Alchegos.Webhook.Handlers.AlchegosEventHandlers;
public class ProjectPlanEventHandler : IAlchegosEventHandler
{
public Task HandleAsync(JsonNode payload, IRabbitPublisher publisher)
{
throw new NotImplementedException();
}
}