Skip to content

Commit

Permalink
update/field-number (#75)
Browse files Browse the repository at this point in the history
* updated

* v
  • Loading branch information
decanus authored Oct 21, 2019
1 parent 46125cf commit 75124ea
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 29 deletions.
44 changes: 22 additions & 22 deletions protobuf/sync.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 7 additions & 7 deletions protobuf/sync.proto
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@ package mvds;
option go_package = "protobuf";

message Payload {
repeated bytes acks = 5001;
repeated bytes offers = 5002;
repeated bytes requests = 5003;
repeated Message messages = 5004;
repeated bytes acks = 1;
repeated bytes offers = 2;
repeated bytes requests = 3;
repeated Message messages = 4;
}

message Message {
bytes group_id = 6001;
int64 timestamp = 6002;
bytes body = 6003;
bytes group_id = 1;
int64 timestamp = 2;
bytes body = 3;
}

0 comments on commit 75124ea

Please sign in to comment.