refactor : move lobby into its own module

This commit is contained in:
2024-12-31 12:30:29 +01:00
parent d60df06708
commit d968f7b7e6
8 changed files with 48 additions and 27 deletions
+2
View File
@@ -14,6 +14,7 @@ import { ConceptInTurn } from './games/entities/concept_in_turn.entity';
import { ConfigService } from '@nestjs/config';
import { WordModule } from './word/words.module';
import { Message } from './games/entities/message.entity';
import { LobbyModule } from './lobby/lobby.module';
const configService = new ConfigService();
@@ -43,6 +44,7 @@ const configService = new ConfigService();
Word,
],
}),
LobbyModule,
GamesModule,
UsersModule,
WordModule,