You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
kratos/pkg/ecode/pb/ecode.proto

13 lines
231 B

syntax = "proto3";
package pb;
import "google/protobuf/any.proto";
option go_package = "go-common/library/ecode/pb";
message Error {
int32 err_code = 1;
string err_message = 2;
google.protobuf.Any err_detail = 3;
}