using Cloud.Services.Broker.Support; namespace Cloud.Services.Broker { public interface IBrokerService { Task Produce(Command command); Task Consume(string topic); } }