11 lines
299 B
TypeScript
11 lines
299 B
TypeScript
import { Module } from '@nestjs/common';
|
|
import { CommentsService } from './comments.service';
|
|
import { CommentsController } from './comments.controller';
|
|
|
|
@Module({
|
|
providers: [CommentsService],
|
|
controllers: [CommentsController],
|
|
exports: [CommentsService],
|
|
})
|
|
export class CommentsModule {}
|