修改【readme】 添加【安卓端登录】appsec 添加大量【proto结构文件】

This commit is contained in:
SocialSisterYi
2021-02-03 00:02:04 +08:00
parent adfb20f144
commit 07d0396bbc
33 changed files with 7848 additions and 1578 deletions

View File

@@ -1,4 +1,5 @@
syntax = "proto3";
package bilibili.rpc;
import "google/protobuf/any.proto";
@@ -6,7 +7,12 @@ import "google/protobuf/any.proto";
//接口回复报错信息
//grpc-status-details-bin
message Status{
int32 code = 1; //错误码
string message = 2; //错误信息
repeated google.protobuf.Any details = 3; //套娃专用
//业务错误码
int32 code = 1;
//业务错误信息
string message = 2;
//扩展信息嵌套(套娃专用)
repeated google.protobuf.Any details = 3;
}