Technical requirements
To complete this chapter, you will need to have Go 1.11 or above and the Protocol Buffers compiler. We will be using the official Protocol Buffers compiler; you can install it by running the following:
go install google.golang.org/protobuf/cmd/protoc-gen-go@latest
export PATH="$PATH:$(go env GOPATH)/bin"
You can find the code examples for this chapter on GitHub at the following link:
https://github.com/PacktPublishing/microservices-with-go/tree/main/Chapter04