From e6ac262556dee023b152fc95539a6ca177c2d7b8 Mon Sep 17 00:00:00 2001 From: lane-c-wagner Date: Sat, 6 Mar 2021 17:13:16 -0700 Subject: [PATCH] Readme --- README.md | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 7052130..499f352 100644 --- a/README.md +++ b/README.md @@ -6,9 +6,9 @@ Supported by [Qvault](https://qvault.io) ## Motivation -Streadway's [AMQP](https://github.com/streadway/amqp) library is currently the most robust and well-supported Go client I'm aware of. It's a fantastic option and I recommend starting there and seeing if it fulfills your needs. Their project has made an effort to stay within the scope of the AMQP protocol. As such, no reconnection logic and few ease-of-use abstractions are provided. +[Streadway's AMQP](https://github.com/streadway/amqp) library is currently the most robust and well-supported Go client I'm aware of. It's a fantastic option and I recommend starting there and seeing if it fulfills your needs. Their project has made an effort to stay within the scope of the AMQP protocol, as such, no reconnection logic and few ease-of-use abstractions are provided. -The goal with `go-rabbit` is to still provide basically all of the nitty-gritty functionality of AMQP, but to make it easier to work with via a higher-level API. Particularly: +The goal with `go-rabbitmq` is to still provide most all of the nitty-gritty functionality of AMQP, but to make it easier to work with via a higher-level API. Particularly: * Automatic reconnection * Multithreaded consumers via a handler function @@ -97,10 +97,3 @@ Submit an issue (above in the issues tab) I love help! Contribute by forking the repo and opening pull requests. Please ensure that your code passes the existing tests and linting, and write tests to test your changes if applicable. All pull requests should be submitted to the `main` branch. - -```bash -make test -make fmt -make vet -make lint -```