├── client └── main.go ├── proto ├── customer_service.pb.go └── customer_service.proto └── server └── main.go /client/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattn/grpc-example/HEAD/client/main.go -------------------------------------------------------------------------------- /proto/customer_service.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattn/grpc-example/HEAD/proto/customer_service.pb.go -------------------------------------------------------------------------------- /proto/customer_service.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattn/grpc-example/HEAD/proto/customer_service.proto -------------------------------------------------------------------------------- /server/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattn/grpc-example/HEAD/server/main.go --------------------------------------------------------------------------------