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