mirror of
https://github.com/go-micro/go-micro.git
synced 2024-12-12 08:23:58 +02:00
11 lines
133 B
Protocol Buffer
11 lines
133 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
package errors;
|
||
|
|
||
|
message Error {
|
||
|
string id = 1;
|
||
|
int32 code = 2;
|
||
|
string detail = 3;
|
||
|
string status = 4;
|
||
|
};
|