Skip to content

Latest commit

 

History

History
19 lines (14 loc) · 327 Bytes

grpc.md

File metadata and controls

19 lines (14 loc) · 327 Bytes

gRPC Reference

Handy Tips

encode value

# text file value > id: 123
$ cat <text file> | protoc --encode=Account account.proto | hexdump -C
00000000  08 7b                                             |.{|
00000002

decode value

$ cat <encoded file> | protoc --decode=Account acount.proto
id: 123