trim stuff that isn't really used
This commit is contained in:
parent
b304d01e0c
commit
b2cdb562af
|
@ -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 {
|
||||
|
|
10
widget.proto
10
widget.proto
|
@ -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 {
|
||||
|
|
Loading…
Reference in New Issue