DEV Community

Discussion on: Learning Go by examples: part 6 - Create a gRPC app in Go

Collapse
 
yinnovation profile image
Yao

Thanks for the wonderful tutorial! One update here: the gRPC tool for golang has updated its command syntax so as the output form. One big diff here is that instead of single pb file, there will be 2 separate files: one for populating, serializing, and retrieving proto message types, and one for generated client and server code.

see grpc.io/docs/languages/go/quicksta...

Collapse
 
aurelievache profile image
Aurélie Vache

Thanks for your comment! I will update it, thx!