1
0
mirror of https://github.com/go-micro/go-micro.git synced 2024-11-24 08:02:32 +02:00
go-micro/errors/errors.proto
2021-10-06 17:55:14 +01:00

14 lines
185 B
Protocol Buffer

syntax = "proto3";
package errors;
message Error {
string id = 1;
int32 code = 2;
string detail = 3;
string status = 4;
};
message MultiError {
repeated Error errors = 1;
}