This repository contains an example usage of gRPC based on the grpc quickstart example defined here and here.
Install protoc (https://github.com/protocolbuffers/protobuf)
brew install protobuf
To install the go protoc plugin run:
$ go get -u github.com/golang/protobuf/protoc-gen-go
Ensure that $GOBIN is added to the path.
export PATH=$PATH:~/go/bin
$ go generate ./...To run the server:
$ cd server
$ go run main.goTo run the server:
$ cd client
$ go run main.go