blob: d35a2c30f2af9df3bad48989d59196ab0dad453a [file] [log] [blame]
syntax = "proto3";
package proto;
message RunCommandRequest {
string command = 1;
};
message RunCommandResponse {
string effective_command = 1;
repeated string lines = 2;
};
service M6220Proxy {
rpc RunCommand(RunCommandRequest) returns (RunCommandResponse);
};