* replace TypeORM with Kysely query builder * refactor migrations * other changes and fixes
12 lines
366 B
TypeScript
12 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 {}
|