6 lines
173 B
C#
6 lines
173 B
C#
namespace FictionArchive.Service.Shared.Services.EventBus;
|
|
|
|
public interface IEventBus
|
|
{
|
|
Task Publish<TEvent>(TEvent integrationEvent) where TEvent : IntegrationEvent;
|
|
} |