echo_thrift.thrift 169 B

12345678910
  1. struct EchoResult {
  2. 1:required string message;
  3. 2:optional i32 state;
  4. 3:optional i32 error;
  5. }
  6. service Example {
  7. EchoResult Echo(1:string message, 2:string name);
  8. }