comment.module.ts 236 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 import { Module } from '@nestjs/common' import { CommentService } from './comment.service' import { CommentResolver } from './comment.resolver' @Module({ providers: [CommentService, CommentResolver], }) export class CommentModule {}