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 {
|
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 {
|
||||||
|
|
10
widget.proto
10
widget.proto
|
@ -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 {
|
||||||
|
|
Loading…
Reference in New Issue