A simple RabbitMQ service implementation with support for declaring/removing exchanges, queues, producing messages, and consuming messages.
This repository contains a RabbitMQ service implementation with essential functionalities for handling exchanges, queues, producing, and consuming messages. It is designed to be a lightweight and flexible solution for integrating RabbitMQ into your projects.
Golang version v1.20
- Latest version
go get -u github.com/sivaosorg/rmqconn@latest
- Use a specific version (tag)
go get github.com/sivaosorg/rmqconn@v0.0.1
Explain how users can interact with the various modules.
To run tests for all modules, use the following command:
make test
To tidy up the project's Go modules, use the following command:
make tidy
To upgrade project dependencies, use the following command:
make deps-upgrade
To clean the Go module cache, use the following command:
make deps-clean-cache