Browse Source

Adjust all paths from wagslane to claranet for being able to install library

pull/46/head
Hicham Boulahboub 4 years ago
parent
commit
528afb4adb
6 changed files with 12 additions and 7 deletions
  1. +5
    -0
      CHANGELOG.md
  2. +3
    -3
      README.md
  3. +1
    -1
      examples/consumer/main.go
  4. +1
    -1
      examples/logger/main.go
  5. +1
    -1
      examples/publisher/main.go
  6. +1
    -1
      go.mod

+ 5
- 0
CHANGELOG.md View File

@ -1,5 +1,10 @@
# Changelog
## v0.6.4
> 02 Nov 2021
- Adjust all paths from wagslane to claranet for being able to install library
## v0.6.3
> 02 Nov 2021


+ 3
- 3
README.md View File

@ -4,7 +4,7 @@ Wrapper of streadway/amqp that provides reconnection logic and sane defaults. Hi
Supported by [Qvault](https://qvault.io)
[![](https://godoc.org/github.com/wagslane/go-rabbitmq?status.svg)](https://godoc.org/github.com/wagslane/go-rabbitmq)![Deploy](https://github.com/wagslane/go-rabbitmq/workflows/Tests/badge.svg)
[![](https://godoc.org/github.com/claranet/go-rabbitmq?status.svg)](https://godoc.org/github.com/claranet/go-rabbitmq)![Deploy](https://github.com/claranet/go-rabbitmq/workflows/Tests/badge.svg)
## Motivation
@ -28,7 +28,7 @@ The goal with `go-rabbitmq` is to still provide most all of the nitty-gritty fun
Outside of a Go module:
```bash
go get github.com/wagslane/go-rabbitmq
go get github.com/claranet/go-rabbitmq
```
## 🚀 Quick Start Consumer
@ -128,7 +128,7 @@ go func() {
## 💬 Contact
[![Twitter Follow](https://img.shields.io/twitter/follow/wagslane.svg?label=Follow%20Wagslane&style=social)](https://twitter.com/intent/follow?screen_name=wagslane)
[![Twitter Follow](https://img.shields.io/twitter/follow/claranet.svg?label=Follow%20Wagslane&style=social)](https://twitter.com/intent/follow?screen_name=claranet)
Submit an issue (above in the issues tab)


+ 1
- 1
examples/consumer/main.go View File

@ -3,8 +3,8 @@ package main
import (
"log"
rabbitmq "github.com/claranet/go-rabbitmq"
amqp "github.com/rabbitmq/amqp091-go"
rabbitmq "github.com/wagslane/go-rabbitmq"
)
func main() {


+ 1
- 1
examples/logger/main.go View File

@ -3,8 +3,8 @@ package main
import (
"log"
rabbitmq "github.com/claranet/go-rabbitmq"
amqp "github.com/rabbitmq/amqp091-go"
rabbitmq "github.com/wagslane/go-rabbitmq"
)
// customLogger is used in WithPublisherOptionsLogger to create a custom logger.


+ 1
- 1
examples/publisher/main.go View File

@ -3,8 +3,8 @@ package main
import (
"log"
rabbitmq "github.com/claranet/go-rabbitmq"
amqp "github.com/rabbitmq/amqp091-go"
rabbitmq "github.com/wagslane/go-rabbitmq"
)
func main() {


+ 1
- 1
go.mod View File

@ -1,4 +1,4 @@
module github.com/wagslane/go-rabbitmq
module github.com/claranet/go-rabbitmq
go 1.16


Loading…
Cancel
Save