blob: b8444c3411af03914abc6b92d685e3ebb4dd19fe [file] [log] [blame]
syntax = "proto3";
package proto;
option go_package = "code.hackerspace.pl/hscloud/dc/m6220-proxy/proto";
message RunCommandRequest {
string command = 1;
};
message RunCommandResponse {
string effective_command = 1;
repeated string lines = 2;
};
service M6220Proxy {
rpc RunCommand(RunCommandRequest) returns (RunCommandResponse);
};