mirror of
https://github.com/kubernetes-sigs/kustomize.git
synced 2026-06-29 17:41:13 +00:00
13 lines
238 B
Protocol Buffer
13 lines
238 B
Protocol Buffer
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;
|
|
}
|