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