Skip to content
Snippets Groups Projects
Commit c5a093c7 authored by Tim Emiola's avatar Tim Emiola
Browse files

Renames method and service name

parent c1ee3824
No related branches found
No related tags found
No related merge requests found
...@@ -34,9 +34,9 @@ option java_package = "ex.grpc"; ...@@ -34,9 +34,9 @@ option java_package = "ex.grpc";
package helloworld; package helloworld;
// The greeting service definition. // The greeting service definition.
service Greetings { service Greeter {
// Sends a greeting // Sends a greeting
rpc hello (HelloRequest) returns (HelloReply) {} rpc sayHello (HelloRequest) returns (HelloReply) {}
} }
// The request message containing the user's name. // The request message containing the user's name.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment