import { Module } from '@nestjs/common'; import { DocumentImportController } from './document-import.controller'; import { DocumentImportService } from './document-import.service'; import { DocumentImportRepository } from './document-import.repository'; @Module({ controllers: [DocumentImportController], providers: [DocumentImportService, DocumentImportRepository], exports: [DocumentImportService, DocumentImportRepository], }) export class DocumentImportModule {}