mirror of
https://github.com/docmost/docmost.git
synced 2025-11-25 09:11:11 +10:00
15 lines
633 B
TypeScript
15 lines
633 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';
|
|
|
|
@Module({
|
|
imports: [StorageModule, UserModule, WorkspaceModule],
|
|
controllers: [AttachmentController],
|
|
providers: [AttachmentService, AttachmentProcessor],
|
|
})
|
|
export class AttachmentModule {}
|