witProtobuf/events.proto

11 lines
140 B
Protocol Buffer
Raw Normal View History

syntax = "proto3";
package witProto;
enum FOO { X = 0; };
message Event {
string label = 1;
int32 type = 2;
repeated int64 reps = 3;
}