8 lines
210 B
C#
8 lines
210 B
C#
using RabbitMQ.Client;
|
|
|
|
namespace AipsCore.Infrastructure.MessageBroking.RabbitMQ;
|
|
|
|
public interface IRabbitMqConnection
|
|
{
|
|
Task<IChannel> CreateChannelAsync(CancellationToken cancellationToken = default);
|
|
} |