namespace fix

This commit is contained in:
2026-02-14 00:45:35 +01:00
parent 8ea09e6796
commit 2ea7060eef
5 changed files with 18 additions and 5 deletions

View File

@@ -0,0 +1,6 @@
namespace AipsCore.Application.Abstract.MessageBroking;
public interface IMessagePublisher
{
Task PublishAsync<T>(string exchange, string routeKey, T message, CancellationToken cancellationToken = default);
}