2019-06-05 12:22:28 +03:00
|
|
|
syntax = "proto3";
|
|
|
|
|
2020-09-20 16:08:45 +03:00
|
|
|
package helloworld;
|
2020-04-14 16:25:09 +03:00
|
|
|
|
2019-06-05 12:22:28 +03:00
|
|
|
service Test {
|
2020-09-20 16:08:45 +03:00
|
|
|
rpc Call(Request) returns (Response) {}
|
2019-06-05 12:22:28 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
message Request {
|
2020-04-14 16:25:09 +03:00
|
|
|
string uuid = 1;
|
|
|
|
string name = 2;
|
2019-06-05 12:22:28 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
message Response {
|
|
|
|
string msg = 1;
|
|
|
|
}
|