blob: 5afe6b9360cfad35475b96028d4a24a8e41dea7e [file] [log] [blame]
Serge Bazanski753d63f2018-10-14 15:21:46 -07001syntax = "proto3";
Serge Bazanski753d63f2018-10-14 15:21:46 -07002package proto;
Sergiusz Bazanski61594bb2019-07-21 15:20:51 +02003option go_package = "code.hackerspace.pl/hscloud/dc/cmc-proxy/proto";
Serge Bazanski753d63f2018-10-14 15:21:46 -07004
5message GetKVMDataRequest {
6 int64 blade_num = 1;
7}
8
9message GetKVMDataResponse {
10 repeated string arguments = 1;
11}
12
13service CMCProxy {
14 rpc GetKVMData(GetKVMDataRequest) returns (GetKVMDataResponse);
15}