added vendors

This commit is contained in:
mickymiek
2018-12-19 15:29:25 +01:00
parent 12e6881669
commit 8ee6bc4b91
2952 changed files with 1124359 additions and 1 deletions

View File

@ -0,0 +1,12 @@
syntax = "proto2";
package issue270.a;
import "github.com/gogo/protobuf/gogoproto/gogo.proto";
import "github.com/gogo/protobuf/test/issue270/a/a2.proto";
option (gogoproto.populate_all) = true;
message A1 {
optional A2 a2 = 1;
}

View File

@ -0,0 +1,12 @@
syntax = "proto2";
package issue270.a;
import "github.com/gogo/protobuf/gogoproto/gogo.proto";
import "github.com/gogo/protobuf/test/issue270/b/b.proto";
option (gogoproto.populate_all) = true;
message A2 {
optional issue270.b.B b = 1;
}