Files
grpc-go/reflection/grpc_testing/proto2_ext.proto
2016-06-27 12:01:05 -07:00

14 lines
196 B
Protocol Buffer

syntax = "proto2";
package grpc.testing;
import "proto2.proto";
extend ToBeExtened {
optional int32 bar = 13;
optional Extension baz = 17;
}
message Extension {
optional int32 baz = 1;
}