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 {
string header = 1; //
repeated string vals = 2; //
repeated Widget widgetS = 3; //
repeated Widget widgets = 3; //
}
message IntRow {

View File

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