// Protobuf Definitions For TundraWare Inc. grpc Demo // Using Protobuf 3 syntax = "proto3"; // The date service service HostCommand { rpc runcommand (Command) returns (Results) {} } // Argument placeholder message Command{ string command = 1; } // The response message containing the current date and time message Results { string results = 1; }