witProtobuf/events.proto

11 lines
172 B
Protocol Buffer
Raw Normal View History

syntax = "proto2";
package witProto;
enum FOO { X = 17; };
message Event {
required string label = 1;
optional int32 type = 2 [default=77];
repeated int64 reps = 3;
}