topic_request.go 96 B

123456
  1. package kafka
  2. type topicRequest interface {
  3. name() *string
  4. partitions() []partitionRequest
  5. }