brew install protobuf
protoc --version #最新版本
go install google.golang.org/protobuf/cmd/protoc-gen-go@latest
go install google.golang.org/grpc/cmd/protoc-gen-go-grpc@latest
export PATH=$PATH:$GOPATH/bin
git clone https://github.com/grpc-example/simple.git
cd simple
go mod tidy
make api
go run server.go
go run client.go