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