mirror of
https://github.com/SocialSisterYi/bilibili-API-collect.git
synced 2025-02-25 02:00:11 +08:00
20 lines
474 B
Protocol Buffer
20 lines
474 B
Protocol Buffer
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;
|
|
}
|