| 12345678910111213141516171819202122 |
- syntax = "proto3";
- package pb;
- import "standard/protobuf/pb2/ttt.proto";
- service ServiceChain {
- rpc test(TestAny) returns (Response) ;
- }
- message TestAny {
- pb2.StatusType status= 1;
- string Title = 2;
- }
- message Response {
- uint32 Code = 1;
- string Msg = 2;
- }
|