Files
grpc-go/reflection/grpc_testing/proto2_ext2.proto
2017-02-09 21:12:29 -05:00

15 lines
227 B
Protocol Buffer

syntax = "proto2";
package grpc.testing;
import "proto2.proto";
extend ToBeExtended {
optional string frob = 23;
optional AnotherExtension nitz = 29;
}
message AnotherExtension {
optional int32 whatchamacallit = 1;
}