Further baby step towards the right structure
This commit is contained in:
9
example/echo.proto
Normal file
9
example/echo.proto
Normal file
@ -0,0 +1,9 @@
|
||||
syntax = "proto2";
|
||||
|
||||
message EchoMsg {
|
||||
required string value = 1;
|
||||
}
|
||||
|
||||
service Echoer {
|
||||
rpc Echo (EchoMsg) returns (EchoMsg) {}
|
||||
}
|
Reference in New Issue
Block a user