mirror of
https://github.com/docmost/docmost.git
synced 2026-05-08 15:23:07 +08:00
bf8cf6254f
* feat: typesense driver (EE) - WIP * feat: typesense driver (EE) - WIP * feat: typesense * sync * fix
15 lines
582 B
TypeScript
15 lines
582 B
TypeScript
import { Module } from '@nestjs/common';
|
|
import { PageService } from './services/page.service';
|
|
import { PageController } from './page.controller';
|
|
import { PageHistoryService } from './services/page-history.service';
|
|
import { TrashCleanupService } from './services/trash-cleanup.service';
|
|
import { StorageModule } from '../../integrations/storage/storage.module';
|
|
|
|
@Module({
|
|
controllers: [PageController],
|
|
providers: [PageService, PageHistoryService, TrashCleanupService],
|
|
exports: [PageService, PageHistoryService],
|
|
imports: [StorageModule],
|
|
})
|
|
export class PageModule {}
|