add: terminal tool
This commit is contained in:
6
Handlers/AlchegosEventHandlers/IAlchegosEventHandler.cs
Normal file
6
Handlers/AlchegosEventHandlers/IAlchegosEventHandler.cs
Normal file
@@ -0,0 +1,6 @@
|
||||
namespace Alchegos.Webhook.Handlers.AlchegosEventHandlers;
|
||||
|
||||
public interface IAlchegosEventHandler : IWebhookEventHandler
|
||||
{
|
||||
|
||||
}
|
||||
12
Handlers/AlchegosEventHandlers/ProjectPlanEventHandler.cs
Normal file
12
Handlers/AlchegosEventHandlers/ProjectPlanEventHandler.cs
Normal 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();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user