mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2026-02-15 00:31:30 -05:00
15 lines
192 B
Protocol Buffer
15 lines
192 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package protorpc;
|
|
|
|
message Request {
|
|
string service_method = 1;
|
|
fixed64 seq = 2;
|
|
}
|
|
|
|
message Response {
|
|
string service_method = 1;
|
|
fixed64 seq = 2;
|
|
string error = 3;
|
|
}
|