-
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.
- export tracing constants with appropriate type - refine examples - exclude from module - use local version of `go-kit-kafka` and `common` modules - minor fixes - refactor documentation - update infra closing #4 #2 #3
- Loading branch information
Showing
55 changed files
with
374 additions
and
296 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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
module github.com/alebabai/go-kit-kafka/examples/common | ||
|
||
go 1.16 | ||
|
||
require ( | ||
github.com/alebabai/go-kit-kafka v0.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 => ../../ |
Large diffs are not rendered by default.
Oops, something went wrong.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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
File renamed without changes.
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 |
---|---|---|
@@ -0,0 +1,15 @@ | ||
module github.com/alebabai/go-kit-kafka/examples/confluent | ||
|
||
go 1.16 | ||
|
||
require ( | ||
github.com/alebabai/go-kit-kafka v0.0.0 | ||
github.com/alebabai/go-kit-kafka/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 => ../.. | ||
|
||
replace github.com/alebabai/go-kit-kafka/examples/common => ../common |
Oops, something went wrong.