// Protobuf Definitions For TundraWare Inc. grpc Demo // Using Protobuf 3 syntax = "proto3"; // The date service service HostCommand { rpc runcommand (Command) returns (Results) {} } // The command to run on the server message Command{ string command = 1; } // The response message containing command results message Results { string cmd_results = 1; }