Files
team-planner/backend/src/comments/comments.module.ts
2026-01-15 00:18:35 +03:00

14 lines
451 B
TypeScript

import { Module } from '@nestjs/common';
import { TypeOrmModule } from '@nestjs/typeorm';
import { Comment } from './entities/comment.entity';
import { CommentsService } from './comments.service';
import { CommentsController } from './comments.controller';
@Module({
imports: [TypeOrmModule.forFeature([Comment])],
controllers: [CommentsController],
providers: [CommentsService],
exports: [CommentsService],
})
export class CommentsModule {}