-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor(*): switch to github.com/alebabai/go-kafka
- Loading branch information
Showing
42 changed files
with
121 additions
and
2,933 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
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
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,13 +1,16 @@ | ||
module github.com/alebabai/go-kit-kafka/examples/common | ||
module github.com/alebabai/go-kit-kafka/v2/examples/common | ||
|
||
go 1.16 | ||
go 1.22 | ||
|
||
require ( | ||
github.com/alebabai/go-kit-kafka v0.0.0 | ||
github.com/alebabai/go-kafka v0.3.0 | ||
github.com/alebabai/go-kit-kafka/v2 v2.0.0 | ||
github.com/go-kit/kit v0.13.0 | ||
github.com/go-kit/log v0.2.1 | ||
github.com/google/uuid v1.2.0 | ||
github.com/gorilla/mux v1.8.0 | ||
) | ||
|
||
replace github.com/alebabai/go-kit-kafka => ../../ | ||
require github.com/go-logfmt/logfmt v0.5.1 // indirect | ||
|
||
replace github.com/alebabai/go-kit-kafka/v2 => ../../ |
Large diffs are not rendered by default.
Oops, something went wrong.
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
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
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,15 +1,22 @@ | ||
module github.com/alebabai/go-kit-kafka/examples/confluent | ||
module github.com/alebabai/go-kit-kafka/v2/examples/confluent | ||
|
||
go 1.16 | ||
go 1.22 | ||
|
||
require ( | ||
github.com/alebabai/go-kit-kafka v0.0.0 | ||
github.com/alebabai/go-kit-kafka/examples/common v0.0.0 | ||
github.com/alebabai/go-kafka v0.3.0 | ||
github.com/alebabai/go-kit-kafka/v2 v2.0.0 | ||
github.com/alebabai/go-kit-kafka/v2/examples/common v0.0.0 | ||
github.com/confluentinc/confluent-kafka-go v1.8.2 | ||
github.com/go-kit/kit v0.13.0 | ||
github.com/go-kit/log v0.2.1 | ||
) | ||
|
||
replace github.com/alebabai/go-kit-kafka => ../.. | ||
require ( | ||
github.com/go-logfmt/logfmt v0.5.1 // indirect | ||
github.com/google/uuid v1.2.0 // indirect | ||
github.com/gorilla/mux v1.8.0 // indirect | ||
) | ||
|
||
replace github.com/alebabai/go-kit-kafka/v2 => ../.. | ||
|
||
replace github.com/alebabai/go-kit-kafka/examples/common => ../common | ||
replace github.com/alebabai/go-kit-kafka/v2/examples/common => ../common |
Oops, something went wrong.