[Party Room] 房间索引

This commit is contained in:
2024-01-13 13:54:32 +08:00
parent ab6e660ea0
commit 85f488c118
7 changed files with 666 additions and 5 deletions

View File

@ -26,4 +26,8 @@ class PartyRoomGrpcServer {
final r = await _indexService.getRoomTypes(Empty());
return r;
}
static Future<RoomListData> getRoomList(RoomListPageReqData req) async {
return await _indexService.getRoomList(req);
}
}