Skip to content

Latest commit

 

History

History
22 lines (15 loc) · 315 Bytes

README.md

File metadata and controls

22 lines (15 loc) · 315 Bytes

This example will get two numbers from client and returns greatest common divisor of that numbers.

#How to run

  1. Generate go code from proto file
cd pb
protoc -I . --go_out=plugins=grpc:. ./*.proto
  1. Run server
go run server.go
  1. Run client on other terminal
go run client.go 12 10