2020-09-23 22:13:39 +03:00
|
|
|
syntax = "proto3";
|
|
|
|
|
2020-09-24 15:55:25 +03:00
|
|
|
option go_package = ".;errors";
|
|
|
|
package org.unistack.micro.client.grpc.errors;
|
2020-09-23 22:13:39 +03:00
|
|
|
|
|
|
|
message Error {
|
|
|
|
string id = 1;
|
|
|
|
int32 code = 2;
|
|
|
|
string detail = 3;
|
|
|
|
string status = 4;
|
|
|
|
};
|