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