|
|
@ -1,4 +1,4 @@
|
|
|
|
module goproduct
|
|
|
|
module shoppingCart
|
|
|
|
|
|
|
|
|
|
|
|
go 1.17
|
|
|
|
go 1.17
|
|
|
|
|
|
|
|
|
|
|
@ -21,6 +21,7 @@ require (
|
|
|
|
)
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
require (
|
|
|
|
require (
|
|
|
|
|
|
|
|
git.mashibing.com/msb_47094/shopping-comm v0.0.0-20221031053804-df4c81cf5ca3
|
|
|
|
github.com/afex/hystrix-go v0.0.0-20180502004556-fa1af6a1f4f5
|
|
|
|
github.com/afex/hystrix-go v0.0.0-20180502004556-fa1af6a1f4f5
|
|
|
|
github.com/asim/go-micro/plugins/registry/consul/v4 v4.7.0
|
|
|
|
github.com/asim/go-micro/plugins/registry/consul/v4 v4.7.0
|
|
|
|
github.com/dtm-labs/dtm v1.16.3
|
|
|
|
github.com/dtm-labs/dtm v1.16.3
|
|
|
@ -30,16 +31,12 @@ require (
|
|
|
|
github.com/go-micro/plugins/v4/wrapper/trace/opentracing v1.1.0
|
|
|
|
github.com/go-micro/plugins/v4/wrapper/trace/opentracing v1.1.0
|
|
|
|
github.com/lithammer/shortuuid/v3 v3.0.7
|
|
|
|
github.com/lithammer/shortuuid/v3 v3.0.7
|
|
|
|
github.com/opentracing/opentracing-go v1.2.0
|
|
|
|
github.com/opentracing/opentracing-go v1.2.0
|
|
|
|
github.com/spf13/viper v1.13.0
|
|
|
|
|
|
|
|
github.com/uber/jaeger-client-go v2.30.0+incompatible
|
|
|
|
|
|
|
|
gorm.io/driver/mysql v1.4.3
|
|
|
|
|
|
|
|
)
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
require (
|
|
|
|
require (
|
|
|
|
cloud.google.com/go v0.100.2 // indirect
|
|
|
|
cloud.google.com/go v0.100.2 // indirect
|
|
|
|
cloud.google.com/go/compute v1.6.1 // indirect
|
|
|
|
cloud.google.com/go/compute v1.6.1 // indirect
|
|
|
|
cloud.google.com/go/firestore v1.6.1 // indirect
|
|
|
|
cloud.google.com/go/firestore v1.6.1 // indirect
|
|
|
|
git.mashibing.com/msb_47094/shopping-comm v0.0.0-20221031053804-df4c81cf5ca3 // indirect
|
|
|
|
|
|
|
|
github.com/Microsoft/go-winio v0.5.1 // indirect
|
|
|
|
github.com/Microsoft/go-winio v0.5.1 // indirect
|
|
|
|
github.com/ProtonMail/go-crypto v0.0.0-20210428141323-04723f9f07d7 // indirect
|
|
|
|
github.com/ProtonMail/go-crypto v0.0.0-20210428141323-04723f9f07d7 // indirect
|
|
|
|
github.com/acomagu/bufpipe v1.0.3 // indirect
|
|
|
|
github.com/acomagu/bufpipe v1.0.3 // indirect
|
|
|
@ -117,7 +114,9 @@ require (
|
|
|
|
github.com/spf13/cast v1.5.0 // indirect
|
|
|
|
github.com/spf13/cast v1.5.0 // indirect
|
|
|
|
github.com/spf13/jwalterweatherman v1.1.0 // indirect
|
|
|
|
github.com/spf13/jwalterweatherman v1.1.0 // indirect
|
|
|
|
github.com/spf13/pflag v1.0.5 // indirect
|
|
|
|
github.com/spf13/pflag v1.0.5 // indirect
|
|
|
|
|
|
|
|
github.com/spf13/viper v1.13.0 // indirect
|
|
|
|
github.com/subosito/gotenv v1.4.1 // indirect
|
|
|
|
github.com/subosito/gotenv v1.4.1 // indirect
|
|
|
|
|
|
|
|
github.com/uber/jaeger-client-go v2.30.0+incompatible // indirect
|
|
|
|
github.com/uber/jaeger-lib v2.4.1+incompatible // indirect
|
|
|
|
github.com/uber/jaeger-lib v2.4.1+incompatible // indirect
|
|
|
|
github.com/ugorji/go/codec v1.2.7 // indirect
|
|
|
|
github.com/ugorji/go/codec v1.2.7 // indirect
|
|
|
|
github.com/urfave/cli/v2 v2.3.0 // indirect
|
|
|
|
github.com/urfave/cli/v2 v2.3.0 // indirect
|
|
|
@ -149,4 +148,5 @@ require (
|
|
|
|
gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 // indirect
|
|
|
|
gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 // indirect
|
|
|
|
gopkg.in/warnings.v0 v0.1.2 // indirect
|
|
|
|
gopkg.in/warnings.v0 v0.1.2 // indirect
|
|
|
|
gopkg.in/yaml.v2 v2.4.0 // indirect
|
|
|
|
gopkg.in/yaml.v2 v2.4.0 // indirect
|
|
|
|
|
|
|
|
gorm.io/driver/mysql v1.4.3 // indirect
|
|
|
|
)
|
|
|
|
)
|
|
|
|