更新部分proto结构体文件

This commit is contained in:
社会易姐QwQ
2021-06-11 01:03:04 +08:00
parent 7d06579223
commit 555f7ae056
23 changed files with 1926 additions and 2360 deletions

View File

@@ -0,0 +1,19 @@
syntax = "proto3";
package bilibili.metadata.fawkes;
message FawkesReq {
// 客户端在fawkes系统的唯一名
string appkey = 1;
// 客户端在fawkes系统中的环境参数
string env = 2;
// 启动id
string session_id = 3;
}
message FawkesReply {
// 客户端在fawkes系统中对应的已发布最新的config版本号
string config = 1;
// 客户端在fawkes系统中对应的已发布最新的ff版本号
string ff = 2;
}