Skip to content

Commit 86d8892

Browse files
committedSep 19, 2018
add go.mod and rename pkg
1 parent 8966498 commit 86d8892

File tree

10 files changed

+14
-9
lines changed

10 files changed

+14
-9
lines changed
 

‎README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ The library uses [atomic.Value](http://golang.org/pkg/sync/atomic/#Value), so Go
1212

1313
# Documentation
1414

15-
[![GoDoc](https://godoc.org/github.com/assembla/cony?status.svg)](https://godoc.org/github.com/assembla/cony)
16-
[![Build Status](https://travis-ci.org/assembla/cony.svg)](https://travis-ci.org/assembla/cony)
15+
[![GoDoc](https://godoc.org/github.com/rueian/cony?status.svg)](https://godoc.org/github.com/rueian/cony)
16+
[![Build Status](https://travis-ci.org/rueian/cony.svg)](https://travis-ci.org/rueian/cony)
1717

1818
# Thread-safety
1919

‎doc_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"os"
66
"time"
77

8-
"github.com/assembla/cony"
8+
"github.com/rueian/cony"
99
"github.com/streadway/amqp"
1010
)
1111

‎examples/basic/consumer/consumer.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"fmt"
66
"log"
77

8-
"github.com/assembla/cony"
8+
"github.com/rueian/cony"
99
)
1010

1111
var url = flag.String("url", "amqp://guest:guest@localhost/", "amqp url")

‎examples/basic/producer/producer.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"flag"
55
"fmt"
66

7-
"github.com/assembla/cony"
7+
"github.com/rueian/cony"
88
"github.com/streadway/amqp"
99
"time"
1010
)

‎examples/email/consumer/consumer.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77
"log"
88
"net/smtp"
99

10-
"github.com/assembla/cony"
10+
"github.com/rueian/cony"
1111
)
1212

1313
var url = flag.String("url", "amqp://guest:guest@localhost/", "amqp url")

‎examples/email/producer/producer.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
"log"
99
"net/http"
1010

11-
"github.com/assembla/cony"
11+
"github.com/rueian/cony"
1212
"github.com/streadway/amqp"
1313
)
1414

‎examples/web/consumer/consumer.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"fmt"
66
"log"
77

8-
"github.com/assembla/cony"
8+
"github.com/rueian/cony"
99
)
1010

1111
var url = flag.String("url", "amqp://guest:guest@localhost/", "amqp url")

‎examples/web/producer/producer.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77
"log"
88
"net/http"
99

10-
"github.com/assembla/cony"
10+
"github.com/rueian/cony"
1111
"github.com/streadway/amqp"
1212
)
1313

‎go.mod

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
module github.com/rueian/cony
2+
3+
require github.com/streadway/amqp v0.0.0-20180806233856-70e15c650864

‎go.sum

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
github.com/streadway/amqp v0.0.0-20180806233856-70e15c650864 h1:Oj3PUEs+OUSYUpn35O+BE/ivHGirKixA3+vqA0Atu9A=
2+
github.com/streadway/amqp v0.0.0-20180806233856-70e15c650864/go.mod h1:1WNBiOZtZQLpVAyu0iTduoJL9hEsMloAK5XWrtW0xdY=

0 commit comments

Comments
 (0)
Please sign in to comment.