mirror of
https://github.com/docmost/docmost.git
synced 2025-11-14 18:41:09 +10:00
fix export controller reference in module
This commit is contained in:
@ -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 {}
|
||||||
|
|||||||
Reference in New Issue
Block a user