mirror of
https://github.com/docmost/docmost.git
synced 2026-07-15 01:36:48 +10:00
12 lines
342 B
TypeScript
12 lines
342 B
TypeScript
import { Module } from '@nestjs/common';
|
|
import { ExportService } from './export.service';
|
|
import { ExportController } from './export.controller';
|
|
import { StorageModule } from '../storage/storage.module';
|
|
|
|
@Module({
|
|
imports: [StorageModule],
|
|
providers: [ExportService],
|
|
controllers: [ExportController],
|
|
})
|
|
export class ExportModule {}
|