shao 6 days ago
parent
commit
f3dfcd5c3a
1 changed files with 14 additions and 0 deletions
  1. 14 0
      dr_basic.proto

+ 14 - 0
dr_basic.proto

@@ -0,0 +1,14 @@
+syntax = "proto3";
+
+option go_package = "dr_basic_pb/";
+
+package dr.basic;
+
+import "google/protobuf/any.proto";
+
+message HttpResponse {
+  string code = 1;
+  string description = 2;
+  string solution = 3;
+  google.protobuf.Any data = 4;
+}