blob: b8444c3411af03914abc6b92d685e3ebb4dd19fe [file] [log] [blame]
Sergiusz Bazanskiff5af692018-08-29 19:20:46 +01001syntax = "proto3";
2package proto;
Sergiusz Bazanski61594bb2019-07-21 15:20:51 +02003option go_package = "code.hackerspace.pl/hscloud/dc/m6220-proxy/proto";
Sergiusz Bazanskiff5af692018-08-29 19:20:46 +01004
5message RunCommandRequest {
6 string command = 1;
7};
8
9message RunCommandResponse {
10 string effective_command = 1;
11 repeated string lines = 2;
12};
13
14service M6220Proxy {
15 rpc RunCommand(RunCommandRequest) returns (RunCommandResponse);
16};