-
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.
- Loading branch information
Showing
7 changed files
with
366 additions
and
603 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,16 +1,45 @@ | ||
module github.com/rebuy-de/rebuy-go-sdk/examples/full | ||
module github.com/rebuy-de/rebuy-go-sdk/v4/examples/full | ||
|
||
go 1.16 | ||
go 1.18 | ||
|
||
replace github.com/rebuy-de/rebuy-go-sdk/v4 => ../.. | ||
|
||
require ( | ||
github.com/alicebob/miniredis/v2 v2.14.3 | ||
github.com/go-redis/redis/v8 v8.7.1 | ||
github.com/alicebob/miniredis/v2 v2.16.0 | ||
github.com/go-redis/redis/v8 v8.11.4 | ||
github.com/julienschmidt/httprouter v1.3.0 | ||
github.com/pkg/errors v0.9.1 | ||
github.com/rebuy-de/rebuy-go-sdk/v4 v3.5.0 | ||
github.com/rebuy-de/rebuy-go-sdk/v4 v4.0.0 | ||
github.com/sirupsen/logrus v1.8.1 | ||
github.com/spf13/cobra v1.1.3 | ||
github.com/spf13/cobra v1.2.1 | ||
golang.org/x/sync v0.0.0-20210220032951-036812b2e83c | ||
) | ||
|
||
require ( | ||
github.com/alicebob/gopher-json v0.0.0-20200520072559-a9ecdc9d1d3a // indirect | ||
github.com/beorn7/perks v1.0.1 // indirect | ||
github.com/cespare/xxhash/v2 v2.1.2 // indirect | ||
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect | ||
github.com/gemnasium/logrus-graylog-hook/v3 v3.0.3 // indirect | ||
github.com/golang/protobuf v1.5.2 // indirect | ||
github.com/google/go-github/v39 v39.2.0 // indirect | ||
github.com/google/go-querystring v1.1.0 // indirect | ||
github.com/google/uuid v1.3.0 // indirect | ||
github.com/gorilla/securecookie v1.1.1 // indirect | ||
github.com/gorilla/sessions v1.2.1 // indirect | ||
github.com/inconshreveable/mousetrap v1.0.0 // indirect | ||
github.com/matttproud/golang_protobuf_extensions v1.0.1 // indirect | ||
github.com/mitchellh/mapstructure v1.4.2 // indirect | ||
github.com/prometheus/client_golang v1.11.0 // indirect | ||
github.com/prometheus/client_model v0.2.0 // indirect | ||
github.com/prometheus/common v0.26.0 // indirect | ||
github.com/prometheus/procfs v0.6.0 // indirect | ||
github.com/spf13/pflag v1.0.5 // indirect | ||
github.com/yuin/gopher-lua v0.0.0-20200816102855-ee81675732da // indirect | ||
golang.org/x/crypto v0.0.0-20210921155107-089bfa567519 // indirect | ||
golang.org/x/net v0.0.0-20211007125505-59d4e928ea9d // indirect | ||
golang.org/x/oauth2 v0.0.0-20211028175245-ba495a64dcb5 // indirect | ||
golang.org/x/sys v0.0.0-20211007075335-d3039528d8ac // indirect | ||
google.golang.org/appengine v1.6.7 // indirect | ||
google.golang.org/protobuf v1.26.0 // indirect | ||
) |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,20 @@ | ||
module github.com/rebuy-de/rebuy-go-sdk/examples/minimal | ||
module github.com/rebuy-de/rebuy-go-sdk/v4/examples/minimal | ||
|
||
go 1.16 | ||
go 1.18 | ||
|
||
replace github.com/rebuy-de/rebuy-go-sdk/v4 => ../.. | ||
|
||
require ( | ||
github.com/rebuy-de/rebuy-go-sdk/v4 v3.5.0 | ||
github.com/rebuy-de/rebuy-go-sdk/v4 v4.0.0 | ||
github.com/sirupsen/logrus v1.8.1 | ||
github.com/spf13/cobra v1.1.3 | ||
github.com/spf13/cobra v1.2.1 | ||
) | ||
|
||
require ( | ||
github.com/gemnasium/logrus-graylog-hook/v3 v3.0.3 // indirect | ||
github.com/google/uuid v1.3.0 // indirect | ||
github.com/inconshreveable/mousetrap v1.0.0 // indirect | ||
github.com/pkg/errors v0.9.1 // indirect | ||
github.com/spf13/pflag v1.0.5 // indirect | ||
golang.org/x/sys v0.0.0-20211007075335-d3039528d8ac // indirect | ||
) |
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
Oops, something went wrong.