Table of contents
Open Table of contents
Go Protocol Buffers Example
Protocol Buffers usage example in Go.
Repository: https://github.com/martishin/golang-protobuf-example
Running Locally
- Build the protocol buffer definition:
protoc --go_out=. *.proto
- Run the application:
go run main.go
- Run tests:
go test ./...
- Alternatively, run the app using Docker:
make build && make run