Further baby step towards the right structure

This commit is contained in:
Luke Murphy
2020-08-13 20:46:24 +02:00
parent 696631fdf9
commit 99dd1f4cd7
6 changed files with 25 additions and 28 deletions

9
example/echo.proto Normal file
View File

@ -0,0 +1,9 @@
syntax = "proto2";
message EchoMsg {
required string value = 1;
}
service Echoer {
rpc Echo (EchoMsg) returns (EchoMsg) {}
}