mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-17 05:10:31 +00:00
refactor(nestjs): import module
This commit is contained in:
@@ -1,8 +1,34 @@
|
||||
import { Module } from '@nestjs/common';
|
||||
import { ImportAls } from './ImportALS';
|
||||
import { ImportSampleService } from './ImportSample';
|
||||
import { ImportResourceApplication } from './ImportResourceApplication';
|
||||
import { ImportDeleteExpiredFiles } from './ImportRemoveExpiredFiles';
|
||||
import { ImportFileUploadService } from './ImportFileUpload';
|
||||
import { ImportFileProcessCommit } from './ImportFileProcessCommit';
|
||||
import { ImportFileProcess } from './ImportFileProcess';
|
||||
import { ImportFilePreview } from './ImportFilePreview';
|
||||
import { ImportFileMeta } from './ImportFileMeta';
|
||||
import { ImportFileMapping } from './ImportFileMapping';
|
||||
import { ImportFileDataValidator } from './ImportFileDataValidator';
|
||||
import { ImportFileDataTransformer } from './ImportFileDataTransformer';
|
||||
import { ImportFileCommon } from './ImportFileCommon';
|
||||
|
||||
@Module({
|
||||
providers: [ImportAls],
|
||||
providers: [
|
||||
ImportAls,
|
||||
ImportSampleService,
|
||||
ImportResourceApplication,
|
||||
ImportDeleteExpiredFiles,
|
||||
ImportFileUploadService,
|
||||
ImportFileProcessCommit,
|
||||
ImportFileProcess,
|
||||
ImportFilePreview,
|
||||
ImportFileMeta,
|
||||
ImportFileMapping,
|
||||
ImportFileDataValidator,
|
||||
ImportFileDataTransformer,
|
||||
ImportFileCommon
|
||||
],
|
||||
exports: [ImportAls],
|
||||
})
|
||||
export class ImportModule {}
|
||||
|
||||
Reference in New Issue
Block a user