safe.proto 412 B

12345678910111213141516171819
  1. syntax = "proto3";
  2. package proto;
  3. // The greeting service definition.
  4. service SafeService {
  5. // Sends a greeting
  6. rpc getSafeList (SafeServiceRequest) returns (HelloReply) {}
  7. }
  8. // The request message containing the user's name.
  9. message SafeServiceRequest {
  10. string bidsection_id = 1;
  11. }
  12. // The response message containing the greetings
  13. message SafeServiceReply {
  14. string message = 1;
  15. }