Files
docmost/apps/server/src/integrations/export/export.module.ts
T
Philip Okugbe fe83557767 feat: space export (#506)
* 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
2024-11-30 19:47:22 +00:00

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 {}