forked from segmentio/kafka-go
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Every example with your own module (segmentio#844)
* chore: use a module for each example to avoid module name collision * chore: using go 1.15 in all examples * chore: upgrade kafka-go in all examples * chore: upgrade kafka-go in aws_msk_iam module
- Loading branch information
1 parent
2b3f3e3
commit 7888926
Showing
10 changed files
with
23 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
module github.com/tarekbadrshalaan/GoKafka/kafka-go | ||
module github.com/segmentio/kafka-go/example/consumer-logger | ||
|
||
go 1.16 | ||
go 1.15 | ||
|
||
require ( | ||
github.com/klauspost/compress v1.12.2 // indirect | ||
github.com/segmentio/kafka-go v0.4.15 | ||
github.com/segmentio/kafka-go v0.4.28 | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
module github.com/tarekbadrshalaan/GoKafka/kafka-go | ||
module github.com/segmentio/kafka-go/example/consumer-mongo-db | ||
|
||
go 1.16 | ||
go 1.15 | ||
|
||
require ( | ||
github.com/go-stack/stack v1.8.0 // indirect | ||
github.com/klauspost/compress v1.12.2 // indirect | ||
github.com/mongodb/mongo-go-driver v0.3.0 | ||
github.com/segmentio/kafka-go v0.4.15 | ||
github.com/segmentio/kafka-go v0.4.28 | ||
github.com/tidwall/pretty v1.1.0 // indirect | ||
golang.org/x/sync v0.0.0-20181221193216-37e7f081c4d4 // indirect | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
module github.com/tarekbadrshalaan/GoKafka/kafka-go | ||
module github.com/segmentio/kafka-go/example/producer-api | ||
|
||
go 1.15 | ||
|
||
require ( | ||
github.com/klauspost/compress v1.12.2 // indirect | ||
github.com/segmentio/kafka-go v0.4.15 | ||
github.com/segmentio/kafka-go v0.4.28 | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
module github.com/tarekbadrshalaan/GoKafka/kafka-go | ||
module github.com/segmentio/kafka-go/example/producer-random | ||
|
||
go 1.15 | ||
|
||
require ( | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/google/uuid v1.1.0 | ||
github.com/klauspost/compress v1.12.2 // indirect | ||
github.com/segmentio/kafka-go v0.4.15 | ||
github.com/segmentio/kafka-go v0.4.28 | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters