Skip to content
Snippets Groups Projects

Scoretick

Merged Ghost User requested to merge scoretick into Development
5 files
+ 75
18
Compare changes
  • Side-by-side
  • Inline
Files
5
+ 5
1
@@ -13,6 +13,9 @@ import { PersonEntity } from '../user/user.entity';
import { GameGroupEntity } from '../faction/faction.entity';
import { FactionEntity } from '../faction/faction.entity';
import { NotificationModule } from '../notifications/notifications.module';
import { TickService } from './tick.service';
import { ScoreService } from '../score/score.service';
import { ScoreEntity } from 'src/score/score.entity';
@Module({
imports: [
@@ -24,10 +27,11 @@ import { NotificationModule } from '../notifications/notifications.module';
GameGroupEntity,
ObjectivePointEntity,
ObjectivePoint_HistoryEntity,
ScoreEntity,
]),
NotificationModule,
],
controllers: [GameController],
providers: [GameService],
providers: [GameService, TickService, ScoreService],
})
export class GameModule {}
Loading