proto.proto 236 Bytes
Newer Older
Jeromy's avatar
Jeromy committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
syntax = "proto2";

package issue34;

import "github.com/gogo/protobuf/gogoproto/gogo.proto";

option (gogoproto.unmarshaler_all) = true;

message Foo {
  optional bytes bar = 1;
}

message FooWithRepeated {
  repeated bytes bar = 1;
}