command_line.proto 218 B

123456789101112131415
  1. syntax = "proto3";
  2. package command_line;
  3. service CommandLine {
  4. rpc Echo(CommandRequest) returns (CommandResponse) {}
  5. }
  6. message CommandRequest {
  7. string text = 1;
  8. }
  9. message CommandResponse {
  10. string text = 1;
  11. }