https://medium.com/swlh/apache-kafka-with-golang-227f9f2eb818
docker-compose up -d
to run kafkago run producer/producer.go
to run the producer (starts HTTP server)curl --location --request POST 'localhost:3000/api/v1/comments' --header 'Content-Type: application/json' --data-raw '{ "text":"nice boy" }'
to send a message to the producergo run consumer/consumer.go
to run the consumer