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