更新大量【proto定义】并勘误

This commit is contained in:
社会易姐QwQ
2021-07-06 21:28:36 +08:00
parent 129b9bc88b
commit ce8d00fcd0
36 changed files with 2951 additions and 2099 deletions

View File

@@ -0,0 +1,25 @@
syntax = "proto3";
package bilibili.app.show.gateway.v1;
import "bilibili/broadcast/message/main/native.proto";
//
service AppShow {
// 获取Native页进度数据
rpc GetActProgress (GetActProgressReq) returns (GetActProgressReply);
}
// 获取Native页进度数据-请求
message GetActProgressReq {
// Native页id
int64 pageID = 1;
// 用户mid
int64 mid = 2;
}
// 获取Native页进度数据-响应
message GetActProgressReply {
// 进度数据
bilibili.broadcast.message.main.NativePageEvent event = 1;
}