Skip to content

Commit

Permalink
Fix imports
Browse files Browse the repository at this point in the history
  • Loading branch information
K4L1Ma committed Dec 3, 2020
1 parent 4a3c460 commit 93887db
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion consumer/consumer.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (

"github.com/Shopify/sarama"

"github.com/chiguirez/kfk/v2/consumer/handler"
"github.com/chiguirez/kfk/v3/consumer/handler"
)

type Consumer struct {
Expand Down
2 changes: 1 addition & 1 deletion consumer/handler/guard/message_handler_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (

"github.com/stretchr/testify/suite"

. "github.com/chiguirez/kfk/v2/consumer/handler/guard"
. "github.com/chiguirez/kfk/v3/consumer/handler/guard"
)

type guardSuite struct {
Expand Down
2 changes: 1 addition & 1 deletion consumer/handler/message_handler.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (
"github.com/Shopify/sarama"
"golang.org/x/sync/errgroup"

"github.com/chiguirez/kfk/v2/consumer/handler/guard"
"github.com/chiguirez/kfk/v3/consumer/handler/guard"
)

type Handler struct {
Expand Down

0 comments on commit 93887db

Please sign in to comment.