Files
QSfera/Server/vendor/go-micro.dev/v4/errors/errors.proto
T
Курнат Андрей 2315f25754 Initial QSfera import
2026-06-07 10:20:04 +03: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;
}