mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-23 13:26:42 +02:00
chore: archive finance, mail, moodlit apps and rename voxel-lava
- 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>
This commit is contained in:
parent
c3c272abc9
commit
ace7fa8f7f
427 changed files with 0 additions and 0 deletions
36
apps-archived/mail/apps/backend/src/app.module.ts
Normal file
36
apps-archived/mail/apps/backend/src/app.module.ts
Normal file
|
|
@ -0,0 +1,36 @@
|
|||
import { Module } from '@nestjs/common';
|
||||
import { ConfigModule } from '@nestjs/config';
|
||||
import { ScheduleModule } from '@nestjs/schedule';
|
||||
import { DatabaseModule } from './db/database.module';
|
||||
import { HealthModule } from './health/health.module';
|
||||
import { AccountModule } from './account/account.module';
|
||||
import { OAuthModule } from './oauth/oauth.module';
|
||||
import { FolderModule } from './folder/folder.module';
|
||||
import { EmailModule } from './email/email.module';
|
||||
import { ComposeModule } from './compose/compose.module';
|
||||
import { AttachmentModule } from './attachment/attachment.module';
|
||||
import { LabelModule } from './label/label.module';
|
||||
import { SyncModule } from './sync/sync.module';
|
||||
import { AIModule } from './ai/ai.module';
|
||||
|
||||
@Module({
|
||||
imports: [
|
||||
ConfigModule.forRoot({
|
||||
isGlobal: true,
|
||||
envFilePath: '.env',
|
||||
}),
|
||||
ScheduleModule.forRoot(),
|
||||
DatabaseModule,
|
||||
HealthModule,
|
||||
AccountModule,
|
||||
OAuthModule,
|
||||
FolderModule,
|
||||
EmailModule,
|
||||
ComposeModule,
|
||||
AttachmentModule,
|
||||
LabelModule,
|
||||
SyncModule,
|
||||
AIModule,
|
||||
],
|
||||
})
|
||||
export class AppModule {}
|
||||
Loading…
Add table
Add a link
Reference in a new issue