add: terminal tool

This commit is contained in:
h z
2025-05-01 23:01:29 +01:00
parent eee9eca6cb
commit 11fed38dff
18 changed files with 98 additions and 21 deletions

View File

@@ -0,0 +1,6 @@
namespace Alchegos.Webhook.Handlers.AlchegosEventHandlers;
public interface IAlchegosEventHandler : IWebhookEventHandler
{
}

View File

@@ -0,0 +1,12 @@
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();
}
}