|
@@ -0,0 +1,19 @@
|
|
|
|
+syntax = "proto3";
|
|
|
|
+
|
|
|
|
+package proto;
|
|
|
|
+
|
|
|
|
+// The greeting service definition.
|
|
|
|
+service SafeService {
|
|
|
|
+ // Sends a greeting
|
|
|
|
+ rpc getSafeList (SafeServiceRequest) returns (HelloReply) {}
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+// The request message containing the user's name.
|
|
|
|
+message SafeServiceRequest {
|
|
|
|
+ string bidsection_id = 1;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+// The response message containing the greetings
|
|
|
|
+message SafeServiceReply {
|
|
|
|
+ string message = 1;
|
|
|
|
+}
|