Signed-off-by: Vasiliy Tolstov <v.tolstov@unistack.org>
This commit is contained in:
2020-09-22 12:38:40 +03:00
parent 0fe1f38a2f
commit 830e8ebadd
5 changed files with 0 additions and 421 deletions

View File

@@ -1,16 +0,0 @@
syntax = "proto3";
package helloworld;
service Test {
rpc Call(Request) returns (Response) {}
}
message Request {
string uuid = 1;
string name = 2;
}
message Response {
string msg = 1;
}