namespace FictionArchive.Service.Shared.Services.EventBus; public interface IEventBus { Task Publish(TEvent integrationEvent) where TEvent : IIntegrationEvent; Task Publish(object integrationEvent, string eventType); }