Last active
October 30, 2018 16:44
-
-
Save nandak522/f281724d178d2969ddbd43a722efed12 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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