Cucumber/Cloud/Services/Broker/IBrokerProdurcer.cs

9 lines
182 B
C#

using Cloud.Services.Broker.Support;
namespace Cloud.Services.Broker
{
public interface IBrokerProdurcer
{
Task ProduceAsync(string topic, Command command);
}
}