move to proto3 syntax

Signed-off-by: Jeff Carr <jcarr@wit.com>
This commit is contained in:
Jeff Carr 2019-05-07 01:29:29 -07:00
parent a21064460c
commit 6154d67a92
1 changed files with 4 additions and 4 deletions

View File

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