Skip to content

Commit

Permalink
fix(grpc_api): GetUserReq && GetUserReply
Browse files Browse the repository at this point in the history
  • Loading branch information
cxw620 authored and xiaoyv404 committed Mar 2, 2024
1 parent af6c524 commit 4645c1e
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions grpc_api/bilibili/app/view/v1/view.proto
Original file line number Diff line number Diff line change
Expand Up @@ -886,15 +886,21 @@ message GetArcsPlayerReq {
//
message GetUserReq {
//
int64 aid = 1;
repeated int64 mids = 1;
//
int64 aid = 2;
//
int64 up_mid = 3;
//
int64 up_mid = 1;
bool only_fans = 4;
}

//
message GetUserReply {
//
User like_list = 1;
//
repeated User like_list = 1;
//
string title = 2;
}

//
Expand Down

0 comments on commit 4645c1e

Please sign in to comment.