Skip to content

Commit 43e0fad

Browse files
committed
Update dependency
1 parent d364580 commit 43e0fad

File tree

7 files changed

+12
-12
lines changed

7 files changed

+12
-12
lines changed

dummy/dummy.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package dummy
22

33
import (
44
"context"
5-
"github.com/cheebo/pubsub"
5+
"github.com/dexpa/pubsub"
66
)
77

88
type publisher struct{}

example/mem/main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package main
33
import (
44
"context"
55
"encoding/json"
6-
"github.com/cheebo/pubsub/memory"
6+
"github.com/dexpa/pubsub/memory"
77
"log"
88
"time"
99
)

example/rabbitmq/publisher/publisher.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ import (
55
"log"
66
"time"
77

8-
"github.com/cheebo/go-config/types"
9-
"github.com/cheebo/pubsub/example/rabbitmq/message"
10-
"github.com/cheebo/pubsub/rabbitmq"
8+
"github.com/dexpa/go-config/types"
9+
"github.com/dexpa/pubsub/example/rabbitmq/message"
10+
"github.com/dexpa/pubsub/rabbitmq"
1111
"encoding/json"
1212
)
1313

example/rabbitmq/subscriber/subscriber.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ import (
55
"log"
66

77
"encoding/json"
8-
"github.com/cheebo/go-config/types"
9-
"github.com/cheebo/pubsub/example/rabbitmq/message"
10-
"github.com/cheebo/pubsub/rabbitmq"
8+
"github.com/dexpa/go-config/types"
9+
"github.com/dexpa/pubsub/example/rabbitmq/message"
10+
"github.com/dexpa/pubsub/rabbitmq"
1111
)
1212

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

marshalling/gob/marshalling_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package gob_test
22

33
import (
4-
"github.com/cheebo/pubsub/marshalling/gob"
4+
"github.com/dexpa/pubsub/marshalling/gob"
55
"github.com/stretchr/testify/assert"
66
"testing"
77
)

memory/memory.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package memory
22

33
import (
44
"context"
5-
"github.com/cheebo/pubsub"
5+
"github.com/dexpa/pubsub"
66
"github.com/pkg/errors"
77
"sync"
88
)

rabbitmq/rabbitmq.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ package rabbitmq
33
import (
44
"context"
55
"github.com/assembla/cony"
6-
"github.com/cheebo/go-config/types"
7-
"github.com/cheebo/pubsub"
6+
"github.com/dexpa/go-config/types"
7+
"github.com/dexpa/pubsub"
88
"github.com/streadway/amqp"
99
"time"
1010
)

0 commit comments

Comments
 (0)