diff options
Diffstat (limited to 'vendor/github.com/golang/protobuf/README.md')
-rw-r--r-- | vendor/github.com/golang/protobuf/README.md | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/vendor/github.com/golang/protobuf/README.md b/vendor/github.com/golang/protobuf/README.md index 795f53f6f..9c4c815c0 100644 --- a/vendor/github.com/golang/protobuf/README.md +++ b/vendor/github.com/golang/protobuf/README.md @@ -1,6 +1,7 @@ # Go support for Protocol Buffers [](https://travis-ci.org/golang/protobuf) +[](https://godoc.org/github.com/golang/protobuf) Google's data interchange format. Copyright 2010 The Go Authors. @@ -111,6 +112,7 @@ When the .proto file specifies `syntax="proto3"`, there are some differences: Consider file test.proto, containing ```proto + syntax = "proto2"; package example; enum FOO { X = 17; }; |