Skip to content

Instantly share code, notes, and snippets.

@nandak522
Last active October 30, 2018 16:44
Show Gist options
  • Save nandak522/f281724d178d2969ddbd43a722efed12 to your computer and use it in GitHub Desktop.
Save nandak522/f281724d178d2969ddbd43a722efed12 to your computer and use it in GitHub Desktop.
syntax = "proto3";
option java_multiple_files = true;
option java_package = "io.grpc.java.testing_service";
option java_outer_classname = "TestingServiceProto";
option objc_class_prefix = "HLW";
package testing_service;
service Testing {
rpc TestingRequestHandler (TestingRequest) returns (TestingResponse) {}
}
message TestingRequest {
string var_one=1;
string var_two = 2;
string var_three = 3;
}
message TestingResponse {
string response = 1;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment