Files
prosapp-migration/backend/src/comments/comments.module.ts
T

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