profileShare

rasmusjy / splitapp-backend-microservices

Read-only snapshot

No repository description.

main default branch 501 files Expires Sep 13, 2026, 9:06 AM
IEventHandler.cs 191 bytes
1 namespace SplitApp.Shared.Messaging;
2
3 public interface IEventHandler<in TEvent> where TEvent : IIntegrationEvent
4 {
5 Task HandleAsync(TEvent @event, CancellationToken cancellationToken);
6 }
7