Cucumber/Cloud/Services/Broker/IBrokerProducer.cs

9 lines
181 B
C#

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