12 lines
325 B
C#
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();
|
|
}
|
|
} |