This commit is contained in:
john 2025-05-16 17:25:06 +02:00
parent a4ef2b4a20
commit 4ec9720541
3 changed files with 10 additions and 3 deletions

View file

@ -0,0 +1,6 @@
namespace Femto.Common.Integration;
public interface IIntegrationEventBus
{
void Subscribe<T>() where T : IIntegrationEvent;
}