mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-22 01:26:41 +02:00
- Add build:packages step to all test.yml jobs (fixes @manacore/shared-nestjs-auth not found) - Handle missing coverage artifacts gracefully in test-coverage.yml - Update .prettierignore to exclude apps-archived/ and problematic files - Format all source files to pass CI checks 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
17 lines
471 B
TypeScript
17 lines
471 B
TypeScript
import { Module } from '@nestjs/common';
|
|
import { ConfigModule } from '@nestjs/config';
|
|
import { GameGeneratorModule } from './game-generator/game-generator.module';
|
|
import { GameSubmissionModule } from './game-submission/game-submission.module';
|
|
import { HealthModule } from './health/health.module';
|
|
|
|
@Module({
|
|
imports: [
|
|
ConfigModule.forRoot({
|
|
isGlobal: true,
|
|
}),
|
|
HealthModule,
|
|
GameGeneratorModule,
|
|
GameSubmissionModule,
|
|
],
|
|
})
|
|
export class AppModule {}
|