Add creation date on frame metadata

This commit is contained in:
2020-01-03 16:48:25 +01:00
parent 792de2d168
commit ada39b1ded
3 changed files with 83 additions and 58 deletions

View File

@ -2,9 +2,12 @@ syntax = "proto3";
package robocar.events;
option go_package = "events";
import "google/protobuf/timestamp.proto";
message FrameRef {
string name = 1;
string id = 2;
google.protobuf.Timestamp created_at= 3;
}
message FrameMessage {