mirror of
https://github.com/docmost/docmost.git
synced 2026-07-11 13:44:55 +10:00
17 lines
760 B
TypeScript
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 {}
|