Skip to content

Instantly share code, notes, and snippets.

@kevinjnguyen
Created May 15, 2022 02:46
Show Gist options
  • Save kevinjnguyen/ebc0a33ec0173d76ddae0fbc38ac1c8b to your computer and use it in GitHub Desktop.
Save kevinjnguyen/ebc0a33ec0173d76ddae0fbc38ac1c8b to your computer and use it in GitHub Desktop.
Simple definition of a Taco message
syntax = "proto3";
message Taco {
string name = 1;
string description = 2;
int32 quantity = 3;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment