2020-03-30 23:58:32 +03:00
|
|
|
syntax = "proto3";
|
|
|
|
|
2015-11-28 21:54:38 +03:00
|
|
|
package protorpc;
|
2015-11-28 19:39:25 +03:00
|
|
|
|
|
|
|
message Request {
|
2020-03-30 23:58:32 +03:00
|
|
|
string service_method = 1;
|
|
|
|
fixed64 seq = 2;
|
2015-11-28 19:39:25 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
message Response {
|
2020-03-30 23:58:32 +03:00
|
|
|
string service_method = 1;
|
|
|
|
fixed64 seq = 2;
|
|
|
|
string error = 3;
|
2015-11-28 19:39:25 +03:00
|
|
|
}
|