forgot to add the time values
This commit is contained in:
parent
a68465cfdc
commit
fffda49ddc
18
table.proto
18
table.proto
|
@ -5,25 +5,25 @@ syntax = "proto3";
|
||||||
package gitpb;
|
package gitpb;
|
||||||
|
|
||||||
import "google/protobuf/timestamp.proto"; // Import the well-known type for Timestamp
|
import "google/protobuf/timestamp.proto"; // Import the well-known type for Timestamp
|
||||||
// import "google/protobuf/any.proto"; // Import 'Any'
|
|
||||||
import "widget.proto"; // Import the well-known type for Timestamp
|
import "widget.proto"; // Import the well-known type for Timestamp
|
||||||
|
|
||||||
|
|
||||||
message StringRow {
|
message StringRow {
|
||||||
Widget header = 1; //
|
Widget header = 1;
|
||||||
repeated string vals = 2; //
|
repeated string vals = 2;
|
||||||
repeated Widget widgets = 3; //
|
repeated Widget widgets = 3;
|
||||||
}
|
}
|
||||||
|
|
||||||
message IntRow {
|
message IntRow {
|
||||||
Widget header = 1; //
|
Widget header = 1;
|
||||||
repeated int64 vals = 2; //
|
repeated int64 vals = 2;
|
||||||
repeated Widget widgets = 3; //
|
repeated Widget widgets = 3;
|
||||||
}
|
}
|
||||||
|
|
||||||
message TimeRow {
|
message TimeRow {
|
||||||
Widget header = 1; //
|
Widget header = 1;
|
||||||
repeated Widget widgets = 2; //
|
repeated google.protobuf.Timestamp vals = 2;
|
||||||
|
repeated Widget widgets = 3;
|
||||||
}
|
}
|
||||||
|
|
||||||
message BoolRow {
|
message BoolRow {
|
||||||
|
|
Loading…
Reference in New Issue