Initial working version

This commit is contained in:
Michael Mandl 2020-03-09 21:15:48 +01:00
commit 959be5996a
4 changed files with 56 additions and 0 deletions

13
protos/hello.proto Normal file
View file

@ -0,0 +1,13 @@
syntax = "proto3";
message GreetRequest {
string message = 1;
}
message GreetReply {
string message = 1;
}
service HelloService {
rpc greet(GreetRequest) returns (GreetReply);
}