[Party Room] 创建,列表展示

This commit is contained in:
2024-01-13 20:00:06 +08:00
parent fbdfd61c09
commit 839125528b
7 changed files with 203 additions and 9 deletions

View File

@ -31,7 +31,7 @@ class PartyRoomGrpcServer {
return await _indexService.getRoomList(req);
}
static Future createRoom(RoomData roomData) async {
await _indexService.createRoom(roomData);
static Future<RoomData> createRoom(RoomData roomData) async {
return await _indexService.createRoom(roomData);
}
}