mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-19 04:40:19 +00:00
12 lines
177 B
Protocol Buffer
12 lines
177 B
Protocol Buffer
syntax = "proto3";
|
|
package merge;
|
|
|
|
import "github.com/gogo/protobuf/gogoproto/gogo.proto";
|
|
|
|
message A {
|
|
B B = 1 [(gogoproto.nullable) = false];
|
|
}
|
|
|
|
message B {
|
|
int64 c = 1;
|
|
} |