gitee.com/sasukebo/go-micro/v4@v4.7.1/errors/errors.proto (about)

     1  syntax = "proto3";
     2  
     3  package errors;
     4  
     5  message Error {
     6    string id = 1;
     7    int32 code = 2;
     8    string detail = 3;
     9    string status = 4;
    10  };
    11  
    12  message MultiError {
    13    repeated Error errors = 1;
    14  }