async_communication_etc.proto 354 B

1234567891011121314
  1. syntax = "proto2";
  2. message RabbitmqBindEtc {
  3. required string ex = 1;
  4. required string route_key = 2;
  5. }
  6. message RabbitmqEtc {
  7. required string ip = 1;
  8. optional int32 port = 2 [default = 5672];
  9. optional string user = 3 [default = "zx"];
  10. optional string password = 4 [default = "zx123456"];
  11. repeated RabbitmqBindEtc binds = 5;
  12. }