Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add wrpcontext package, Add new decoder #116

Merged
merged 7 commits into from
Apr 12, 2023
Merged
Show file tree
Hide file tree
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,16 +1,22 @@
module github.com/xmidt-org/wrp-go/v3

go 1.13
go 1.19

require (
github.com/davecgh/go-spew v1.1.1
github.com/go-kit/kit v0.12.0
github.com/go-kit/log v0.2.1
github.com/google/uuid v1.3.0
github.com/stretchr/testify v1.8.2
github.com/ugorji/go v1.2.7 // indirect
github.com/ugorji/go/codec v1.2.8
github.com/xmidt-org/httpaux v0.3.2
github.com/xmidt-org/webpa-common v1.11.9
go.uber.org/multierr v1.10.0
)

require (
github.com/go-logfmt/logfmt v0.5.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/stretchr/objx v0.5.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)
Loading