Initial working version
This commit is contained in:
commit
959be5996a
4 changed files with 56 additions and 0 deletions
13
protos/hello.proto
Normal file
13
protos/hello.proto
Normal file
|
@ -0,0 +1,13 @@
|
|||
syntax = "proto3";
|
||||
|
||||
message GreetRequest {
|
||||
string message = 1;
|
||||
}
|
||||
|
||||
message GreetReply {
|
||||
string message = 1;
|
||||
}
|
||||
|
||||
service HelloService {
|
||||
rpc greet(GreetRequest) returns (GreetReply);
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue