fix export controller reference in module
This commit is contained in:
parent
ede5633415
commit
a9a4a26db5
1 changed files with 2 additions and 2 deletions
|
|
@ -1,11 +1,11 @@
|
||||||
import { Module } from '@nestjs/common';
|
import { Module } from '@nestjs/common';
|
||||||
import { ExportService } from './export.service';
|
import { ExportService } from './export.service';
|
||||||
import { ImportController } from './export.controller';
|
import { ExportController } from './export.controller';
|
||||||
import { StorageModule } from '../storage/storage.module';
|
import { StorageModule } from '../storage/storage.module';
|
||||||
|
|
||||||
@Module({
|
@Module({
|
||||||
imports: [StorageModule],
|
imports: [StorageModule],
|
||||||
providers: [ExportService],
|
providers: [ExportService],
|
||||||
controllers: [ImportController],
|
controllers: [ExportController],
|
||||||
})
|
})
|
||||||
export class ExportModule {}
|
export class ExportModule {}
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue