using LiteCharms.Features.Abstractions; namespace LiteCharms.Features.ServiceBus.Abstractions; public interface IEventBus { Task PublishAsync(TEvent notification, CancellationToken cancellationToken = default) where TEvent : class, IEvent; }