update 【gRPC API】 proto files

This commit is contained in:
社会易姐QwQ
2022-02-02 20:25:16 +08:00
parent 57f264f996
commit c14f8c455e
14 changed files with 1492 additions and 846 deletions

View File

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