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 {}