修改【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

@@ -0,0 +1,42 @@
syntax = "proto3";
package bilibili.app.wall.v1;
//
service Wall {
//
//
rpc ruleInfo (RuleRequest) returns (RulesReply);
}
//-请求
message RuleRequest {
}
//-回复
message RulesReply {
//
map<string,RulesInfo> rulesInfo = 1;
}
//
message RuleInfo {
//
bool tf = 1;
//
string m = 2;
//
string a = 3;
//
string p = 4;
}
//
message RulesInfo {
//
repeated RuleInfo rulesInfo = 1;
}