move to proto3 syntax
Signed-off-by: Jeff Carr <jcarr@wit.com>
This commit is contained in:
parent
a21064460c
commit
6154d67a92
|
@ -1,10 +1,10 @@
|
|||
syntax = "proto2";
|
||||
syntax = "proto3";
|
||||
package witProto;
|
||||
|
||||
enum FOO { X = 17; };
|
||||
enum FOO { X = 0; };
|
||||
|
||||
message Event {
|
||||
required string label = 1;
|
||||
optional int32 type = 2 [default=77];
|
||||
string label = 1;
|
||||
int32 type = 2;
|
||||
repeated int64 reps = 3;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue