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

@ -9,31 +9,33 @@ import "google/protobuf/any.proto"; // Import 'Any'
message Size { message Size {
int64 width = 1; int64 width = 1;
int64 height = 2; int64 height = 2;
} }
message Location { message Location {
int64 x = 1; int64 x = 1;
int64 y = 2; int64 y = 2;
} }
message Tree { message Tree {
Widget parent = 1; Widget parent = 1;
repeated Widget children = 2; repeated Widget children = 2;
} }
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 {
string uuid = 1; // `autogenpb:uuid:0331fcd7-3c8c-43e4-be1b-77db6a6bc58c` string uuid = 1; // `autogenpb:uuid:0331fcd7-3c8c-43e4-be1b-77db6a6bc58c`
string version = 2; // `autogenpb:version:v1` string version = 2; // `autogenpb:version:v1`
repeated Widget Widgets = 3; repeated Widget Widgets = 3;
} }