mirror of
https://github.com/docmost/docmost.git
synced 2026-05-07 22:53:08 +08:00
05b3c65b0f
* feat: notifications * feat: watchers * improvements * handle page move for watchers * make watchers non-blocking * more
17 lines
757 B
TypeScript
17 lines
757 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';
|
|
import { CollaborationModule } from '../../collaboration/collaboration.module';
|
|
import { WatcherModule } from '../watcher/watcher.module';
|
|
|
|
@Module({
|
|
controllers: [PageController],
|
|
providers: [PageService, PageHistoryService, TrashCleanupService],
|
|
exports: [PageService, PageHistoryService],
|
|
imports: [StorageModule, CollaborationModule, WatcherModule],
|
|
})
|
|
export class PageModule {}
|