mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-23 08:26:41 +02:00
- Move finance, mail, moodlit to apps-archived for later development - Rename games/voxel-lava to games/voxelava 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
18 lines
429 B
TypeScript
18 lines
429 B
TypeScript
import { Module } from '@nestjs/common';
|
|
import { ConfigModule } from '@nestjs/config';
|
|
import { DatabaseModule } from './db/database.module';
|
|
import { LevelModule } from './level/level.module';
|
|
import { HealthModule } from './health/health.module';
|
|
|
|
@Module({
|
|
imports: [
|
|
ConfigModule.forRoot({
|
|
isGlobal: true,
|
|
envFilePath: '.env',
|
|
}),
|
|
DatabaseModule,
|
|
LevelModule,
|
|
HealthModule,
|
|
],
|
|
})
|
|
export class AppModule {}
|