hscloud/proxy.proto

16 lines
281 B
Protocol Buffer
Raw Normal View History

2018-08-29 18:20:46 +00:00
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);
};