11 lines
306 B
TypeScript
11 lines
306 B
TypeScript
import { Module } from '@nestjs/common';
|
|
import { CommentService } from './comment.service';
|
|
import { CommentController } from './comment.controller';
|
|
|
|
@Module({
|
|
imports: [],
|
|
controllers: [CommentController],
|
|
providers: [CommentService],
|
|
exports: [CommentService],
|
|
})
|
|
export class CommentModule {}
|