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