Files
docmost/apps/server/src/core/attachment/attachment.module.ts
T
Philipinho c2e722ee5c WIP 3
2025-12-24 00:27:25 +00:00

17 lines
760 B
TypeScript

import { Module } from '@nestjs/common';
import { AttachmentService } from './services/attachment.service';
import { AttachmentController } from './attachment.controller';
import { StorageModule } from '../../integrations/storage/storage.module';
import { UserModule } from '../user/user.module';
import { WorkspaceModule } from '../workspace/workspace.module';
import { AttachmentProcessor } from './processors/attachment.processor';
import { TokenModule } from '../auth/token.module';
import { PageModule } from '../page/page.module';
@Module({
imports: [StorageModule, UserModule, WorkspaceModule, TokenModule, PageModule],
controllers: [AttachmentController],
providers: [AttachmentService, AttachmentProcessor],
})
export class AttachmentModule {}