blob: d35a2c30f2af9df3bad48989d59196ab0dad453a [file] [log] [blame]
Sergiusz Bazanskiff5af692018-08-29 19:20:46 +01001syntax = "proto3";
2package proto;
3
4message RunCommandRequest {
5 string command = 1;
6};
7
8message RunCommandResponse {
9 string effective_command = 1;
10 repeated string lines = 2;
11};
12
13service M6220Proxy {
14 rpc RunCommand(RunCommandRequest) returns (RunCommandResponse);
15};