浏览代码

feat: 1111

lanjianrong 4 年之前
父节点
当前提交
ae0cdba1e1
共有 1 个文件被更改,包括 19 次插入0 次删除
  1. 19 0
      proto/safe.proto

+ 19 - 0
proto/safe.proto

@@ -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;
+}