2020-09-20 16:08:45 +03:00
|
|
|
syntax = "proto3";
|
|
|
|
|
2020-09-29 10:42:12 +03:00
|
|
|
option go_package = "github.com/unistack-org/micro-server-grpc/internal/errors";
|
2020-09-24 15:54:36 +03:00
|
|
|
package org.unistack.micro.server.grpc.errors;
|
2020-09-20 16:08:45 +03:00
|
|
|
|
|
|
|
message Error {
|
|
|
|
string id = 1;
|
|
|
|
int32 code = 2;
|
|
|
|
string detail = 3;
|
|
|
|
string status = 4;
|
|
|
|
};
|