mirror of
https://github.com/fullstorydev/grpcurl.git
synced 2026-05-22 19:51:44 +03:00
fix nil dereference (#10)
This commit is contained in:
19
testing/example.proto
Normal file
19
testing/example.proto
Normal file
@@ -0,0 +1,19 @@
|
||||
syntax = "proto3";
|
||||
|
||||
import "google/protobuf/descriptor.proto";
|
||||
import "google/protobuf/empty.proto";
|
||||
import "google/protobuf/timestamp.proto";
|
||||
|
||||
message TestRequest {
|
||||
repeated string file_names = 1;
|
||||
}
|
||||
|
||||
message TestResponse {
|
||||
map<string, google.protobuf.FileDescriptorProto> file_protos = 1;
|
||||
google.protobuf.Timestamp last_update_date = 2;
|
||||
}
|
||||
|
||||
service TestService {
|
||||
rpc GetFiles (TestRequest) returns (TestResponse);
|
||||
rpc Ping (google.protobuf.Empty) returns (google.protobuf.Empty);
|
||||
}
|
||||
BIN
testing/example.protoset
Normal file
BIN
testing/example.protoset
Normal file
Binary file not shown.
Binary file not shown.
Reference in New Issue
Block a user