fix errors proto and stream

This commit is contained in:
Asim Aslam
2020-10-17 10:26:26 +01:00
parent ffc9bff208
commit 1b8ccd13a6
4 changed files with 137 additions and 1 deletions

10
errors/proto/errors.proto Normal file
View File

@@ -0,0 +1,10 @@
syntax = "proto3";
package errors;
message Error {
string id = 1;
int32 code = 2;
string detail = 3;
string status = 4;
};