test_base.proto 131 B

123456789101112
  1. // test proto
  2. syntax = "proto3";
  3. package base;
  4. message CommonReq {
  5. string in = 1;
  6. }
  7. message CommonReply {
  8. string out = 1;
  9. }