hscloud/proxy.proto
2018-08-29 19:20:46 +01:00

15 lines
281 B
Protocol Buffer

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);
};