1
0
Fork 0
mirror of https://github.com/kyverno/kyverno.git synced 2025-03-10 01:46:55 +00:00
kyverno/vendor/github.com/gogo/protobuf/test/merge/merge.proto
2019-10-23 23:19:53 -07:00

17 lines
259 B
Protocol Buffer

syntax = "proto3";
package merge;
import "github.com/gogo/protobuf/gogoproto/gogo.proto";
message A {
B B = 1 [(gogoproto.nullable) = false];
repeated C c = 2 [(gogoproto.nullable) = false];
}
message B {
int64 c = 1;
}
message C {
int64 d = 1;
}