modulepackage
0.0.0-20211027000503-84cc9fa025bc
Repository: https://github.com/aysf/rabbitmq-go-tutorial.git
Documentation: pkg.go.dev
# README
rabbitMQ-go-tutorial
how to use this tutorial
- see and try to understand the writting article in https://tutorialedge.net/golang/go-rabbitmq-tutorial/
- clone this repo
git clone [email protected]:aysf/rabbitMQ-go-tutorial.git
- change the directory
cd rabbitMQ-go-tutorial
- install and/or run RabbitMQ via docker
docker run -it --rm --name rabbitmq -p 5672:5672 -p 15672:15672 rabbitmq:3.9-management
- run the publisher
go run main.go
- run the consumer app service
go run consumer.go