Implements proto file — Protocol Buffer

Akash Jain
5 min readMay 10, 2023

Protocol Buffers provide a method for encoding data in a format that is both easy for machines to read, transfer, and process, as well as readable by humans.

Protocol Buffers have a syntax that resembles the following and its file extension is .proto

syntax = "proto3";

option go_package = "example.com/project/protos/fizz";

message Person {
int32 id = 1;
string…

--

--

Akash Jain

Love to write code and discuss technology | If you explain to others in simple words it means you know it very well — akashjain132@gmail.com