[Party Room] 创建房间

This commit is contained in:
2024-01-13 17:29:41 +08:00
parent 85f488c118
commit fbdfd61c09
12 changed files with 343 additions and 20 deletions

View File

@ -30,4 +30,8 @@ class PartyRoomGrpcServer {
static Future<RoomListData> getRoomList(RoomListPageReqData req) async {
return await _indexService.getRoomList(req);
}
static Future createRoom(RoomData roomData) async {
await _indexService.createRoom(roomData);
}
}