12 lines
281 B
Protocol Buffer
12 lines
281 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; //套娃专用
|
|
} |