micro/errors/proto/errors.proto

11 lines
133 B
Protocol Buffer
Raw Normal View History

2020-07-19 13:37:40 +03:00
syntax = "proto3";
package errors;
message Error {
string id = 1;
int32 code = 2;
string detail = 3;
string status = 4;
};