Skip to content

Instantly share code, notes, and snippets.

@atul161
Created January 30, 2020 11:51
Show Gist options
  • Save atul161/30e486b3bc6d689ca970e2dfcc050945 to your computer and use it in GitHub Desktop.
Save atul161/30e486b3bc6d689ca970e2dfcc050945 to your computer and use it in GitHub Desktop.
//syntax proto3 will tell the compiler that we are using 3rd version
//of protocol buffers.
syntax = "proto3";
message Employee{
string name = 1;
int32 id = 2;
string email = 3;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment