Skip to content

Latest commit

 

History

History
26 lines (20 loc) · 434 Bytes

README.md

File metadata and controls

26 lines (20 loc) · 434 Bytes

testgrpc

Use protoc to generate chat.pb.go

 protoc --go_out=plugins=grpc:chat chat.proto

Run server.go

go run server.go

Run client.go

go run client.go

Test result

testgrpc % go run server.go
2021/12/13 09:40:56 Received message body from client:Hello from client !

 testgrpc % go run client.go
2021/12/13 09:40:56 Response from Server: Hello from the server!