mirror of
https://github.com/docmost/docmost.git
synced 2026-05-08 23:33:09 +08:00
c18c9ae02b
* replace TypeORM with Kysely query builder * refactor migrations * other changes and fixes
13 lines
366 B
TypeScript
13 lines
366 B
TypeScript
import { Module } from '@nestjs/common';
|
|
import { CommentService } from './comment.service';
|
|
import { CommentController } from './comment.controller';
|
|
import { PageModule } from '../page/page.module';
|
|
|
|
@Module({
|
|
imports: [PageModule],
|
|
controllers: [CommentController],
|
|
providers: [CommentService],
|
|
exports: [CommentService],
|
|
})
|
|
export class CommentModule {}
|