18 lines
332 B
Protocol Buffer
18 lines
332 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package bilibili.rpc;
|
|
|
|
import "google/protobuf/any.proto";
|
|
|
|
//接口回复报错信息
|
|
//grpc-status-details-bin
|
|
message Status{
|
|
//业务错误码
|
|
int32 code = 1;
|
|
|
|
//业务错误信息
|
|
string message = 2;
|
|
|
|
//扩展信息嵌套(套娃专用)
|
|
repeated google.protobuf.Any details = 3;
|
|
} |