Files
git.stella-ops.org/src/Notify/StellaOps.Notify.Worker/Handlers/INotifyEventHandler.cs
2026-02-01 21:37:40 +02:00

12 lines
264 B
C#

using StellaOps.Notify.Queue;
using System.Threading;
using System.Threading.Tasks;
namespace StellaOps.Notify.Worker.Handlers;
public interface INotifyEventHandler
{
Task HandleAsync(NotifyQueueEventMessage message, CancellationToken cancellationToken);
}