20 lines
337 B
Protocol Buffer
20 lines
337 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
import "google/protobuf/any.proto";
|
||
|
import "google/rpc/status.proto";
|
||
|
|
||
|
package mesytec.mnode.proto.mrpc;
|
||
|
|
||
|
message MethodCall
|
||
|
{
|
||
|
string service = 1;
|
||
|
string method = 2;
|
||
|
google.protobuf.Any request = 3;
|
||
|
}
|
||
|
|
||
|
message MethodCallResponse
|
||
|
{
|
||
|
google.rpc.Status status = 1;
|
||
|
google.protobuf.Any response = 2;
|
||
|
}
|