using Cloud.Services.Broker.Support; namespace Cloud.Services.Broker.Implement.Kafka { public class KafkaService : IBrokerService { public Task Consume(string topic) { throw new NotImplementedException(); } public Task Produce(Command command) { throw new NotImplementedException(); } } }