7 lines
235 B
C#
7 lines
235 B
C#
namespace FictionArchive.Service.Shared.Services.EventBus;
|
|
|
|
public interface IEventBus
|
|
{
|
|
Task Publish<TEvent>(TEvent integrationEvent) where TEvent : IIntegrationEvent;
|
|
Task Publish(object integrationEvent, string eventType);
|
|
} |