mirror of
https://github.com/Shadowfita/docmost.git
synced 2025-11-13 00:02:30 +10:00
* replace TypeORM with Kysely query builder * refactor migrations * other changes and fixes
15 lines
595 B
TypeScript
15 lines
595 B
TypeScript
import { Module } from '@nestjs/common';
|
|
import { PageService } from './services/page.service';
|
|
import { PageController } from './page.controller';
|
|
import { WorkspaceModule } from '../workspace/workspace.module';
|
|
import { PageOrderingService } from './services/page-ordering.service';
|
|
import { PageHistoryService } from './services/page-history.service';
|
|
|
|
@Module({
|
|
imports: [WorkspaceModule],
|
|
controllers: [PageController],
|
|
providers: [PageService, PageOrderingService, PageHistoryService],
|
|
exports: [PageService, PageOrderingService, PageHistoryService],
|
|
})
|
|
export class PageModule {}
|