2021-10-13 13:31:23 +01:00
|
|
|
module github.com/asim/go-micro/examples/v4
|
2020-12-26 15:17:20 +00:00
|
|
|
|
2021-06-29 20:40:54 +08:00
|
|
|
go 1.16
|
2020-12-26 15:17:20 +00:00
|
|
|
|
2021-10-23 16:20:42 +08:00
|
|
|
replace (
|
|
|
|
github.com/asim/go-micro/plugins/client/grpc/v4 => ../plugins/client/grpc
|
2021-10-26 22:07:08 +08:00
|
|
|
github.com/asim/go-micro/plugins/client/http/v4 => ../plugins/client/http
|
|
|
|
github.com/asim/go-micro/plugins/config/encoder/toml/v4 => ../plugins/config/encoder/toml
|
|
|
|
github.com/asim/go-micro/plugins/config/encoder/yaml/v4 => ../plugins/config/encoder/yaml
|
|
|
|
github.com/asim/go-micro/plugins/config/source/grpc/v4 => ../plugins/config/source/grpc
|
|
|
|
github.com/asim/go-micro/plugins/server/grpc/v4 => ../plugins/server/grpc
|
|
|
|
github.com/asim/go-micro/plugins/server/http/v4 => ../plugins/server/http
|
2021-10-23 16:20:42 +08:00
|
|
|
github.com/asim/go-micro/plugins/transport/grpc/v4 => ../plugins/transport/grpc
|
2021-10-26 22:07:08 +08:00
|
|
|
github.com/asim/go-micro/plugins/wrapper/select/roundrobin/v4 => ../plugins/wrapper/select/roundrobin
|
|
|
|
github.com/asim/go-micro/plugins/wrapper/select/shard/v4 => ../plugins/wrapper/select/shard
|
2021-10-23 16:20:42 +08:00
|
|
|
go-micro.dev/v4 => ../../go-micro
|
|
|
|
)
|
|
|
|
|
2020-12-26 15:17:20 +00:00
|
|
|
require (
|
2021-10-26 22:07:08 +08:00
|
|
|
github.com/asim/go-micro/plugins/client/grpc/v4 v4.0.0-20211019191242-9edc569e68bb
|
|
|
|
github.com/asim/go-micro/plugins/client/http/v4 v4.0.0-00010101000000-000000000000
|
|
|
|
github.com/asim/go-micro/plugins/config/encoder/toml/v4 v4.0.0-00010101000000-000000000000
|
|
|
|
github.com/asim/go-micro/plugins/config/encoder/yaml/v4 v4.0.0-00010101000000-000000000000
|
|
|
|
github.com/asim/go-micro/plugins/config/source/grpc/v4 v4.0.0-00010101000000-000000000000
|
|
|
|
github.com/asim/go-micro/plugins/server/grpc/v4 v4.0.0-00010101000000-000000000000
|
|
|
|
github.com/asim/go-micro/plugins/server/http/v4 v4.0.0-00010101000000-000000000000
|
|
|
|
github.com/asim/go-micro/plugins/wrapper/select/roundrobin/v4 v4.0.0-00010101000000-000000000000
|
|
|
|
github.com/asim/go-micro/plugins/wrapper/select/shard/v4 v4.0.0-00010101000000-000000000000
|
2021-10-23 16:20:42 +08:00
|
|
|
github.com/gin-gonic/gin v1.7.4
|
|
|
|
github.com/golang/glog v1.0.0
|
2021-04-09 01:31:15 +08:00
|
|
|
github.com/golang/protobuf v1.5.2
|
|
|
|
github.com/grpc-ecosystem/grpc-gateway v1.16.0
|
|
|
|
github.com/pborman/uuid v1.2.1
|
2021-09-01 11:08:43 +02:00
|
|
|
github.com/urfave/cli/v2 v2.3.0
|
2021-10-26 22:07:08 +08:00
|
|
|
go-micro.dev/v4 v4.2.1
|
2021-10-23 16:20:42 +08:00
|
|
|
golang.org/x/net v0.0.0-20211020060615-d418f374d309
|
|
|
|
google.golang.org/genproto v0.0.0-20211021150943-2b146023228c
|
|
|
|
google.golang.org/grpc v1.41.0
|
|
|
|
google.golang.org/protobuf v1.27.1
|
2020-12-26 15:17:20 +00:00
|
|
|
)
|