mirror of
https://github.com/go-kratos/kratos.git
synced 2025-02-03 13:11:42 +02:00
637a6a3628
* add warden rpc
14 lines
231 B
Protocol Buffer
14 lines
231 B
Protocol Buffer
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;
|
|
}
|