ttt.proto 237 B

12345678910111213141516171819
  1. syntax = "proto3";
  2. package pb2;
  3. import "google/protobuf/any.proto";
  4. service ServiceChain {
  5. rpc test(TestAny) returns (Response) ;
  6. }
  7. message TestAny {
  8. string Title = 2;
  9. }
  10. enum StatusType {
  11. DISABLED = 0;
  12. ENABLED = 1;
  13. }