mirror of
https://github.com/docmost/docmost.git
synced 2026-05-07 06:23:06 +08:00
fe83557767
* wip * Space export * option to export pages with children * include attachments in exports * unified export UI * cleanup * fix: change export icon * add export button to space settings * cleanups * export name
12 lines
342 B
TypeScript
12 lines
342 B
TypeScript
import { Module } from '@nestjs/common';
|
|
import { ExportService } from './export.service';
|
|
import { ImportController } from './export.controller';
|
|
import { StorageModule } from '../storage/storage.module';
|
|
|
|
@Module({
|
|
imports: [StorageModule],
|
|
providers: [ExportService],
|
|
controllers: [ImportController],
|
|
})
|
|
export class ExportModule {}
|