mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-22 14:46:41 +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
16
apps-archived/mail/apps/backend/src/sync/sync.module.ts
Normal file
16
apps-archived/mail/apps/backend/src/sync/sync.module.ts
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
import { Module } from '@nestjs/common';
|
||||
import { SyncController } from './sync.controller';
|
||||
import { SyncService } from './sync.service';
|
||||
import { ImapProvider } from './providers/imap.provider';
|
||||
import { GmailProvider } from './providers/gmail.provider';
|
||||
import { OutlookProvider } from './providers/outlook.provider';
|
||||
import { AccountModule } from '../account/account.module';
|
||||
import { AttachmentModule } from '../attachment/attachment.module';
|
||||
|
||||
@Module({
|
||||
imports: [AccountModule, AttachmentModule],
|
||||
controllers: [SyncController],
|
||||
providers: [SyncService, ImapProvider, GmailProvider, OutlookProvider],
|
||||
exports: [SyncService],
|
||||
})
|
||||
export class SyncModule {}
|
||||
Loading…
Add table
Add a link
Reference in a new issue