trim stuff that isn't really used

This commit is contained in:
Jeff Carr 2025-02-19 03:23:31 -06:00
parent b304d01e0c
commit b2cdb562af
2 changed files with 18 additions and 16 deletions

View File

@ -12,7 +12,7 @@ import "widget.proto"; // Import the well-known type for Timestamp
message StringRow { message StringRow {
string header = 1; // string header = 1; //
repeated string vals = 2; // repeated string vals = 2; //
repeated Widget widgetS = 3; // repeated Widget widgets = 3; //
} }
message IntRow { message IntRow {

View File

@ -26,10 +26,12 @@ message Tree {
message Widget { message Widget {
int64 id = 1; int64 id = 1;
string name = 2; string name = 2;
Size size = 3; int64 size = 3;
Location location = 4; // Size size = 3;
string color = 5; // Location location = 4;
google.protobuf.Any TK = 6; // string color = 5;
// google.protobuf.Any TK = 6;
// google.protobuf.Any val = 7;
} }
message Widgets { message Widgets {