12 lines
245 B
Protocol Buffer
12 lines
245 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option go_package = "github.com/unistack-org/micro-client-grpc/internal/errors";
|
|
package org.unistack.micro.client.grpc.errors;
|
|
|
|
message Error {
|
|
string id = 1;
|
|
int32 code = 2;
|
|
string detail = 3;
|
|
string status = 4;
|
|
};
|