Skip to content

Commit

Permalink
fix: StudentModule FilesModuls DI 삭제
Browse files Browse the repository at this point in the history
  • Loading branch information
yesjuhee committed May 2, 2024
1 parent 559b46e commit 117bcc0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
4 changes: 1 addition & 3 deletions src/modules/students/students.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,10 @@ import { Module } from "@nestjs/common";
import { StudentsController } from "./students.controller";
import { StudentsService } from "./students.service";
import { AuthModule } from "../auth/auth.module";
import { FilesModule } from "../files/files.module";

@Module({
controllers: [StudentsController],
providers: [StudentsService],
imports: [AuthModule, FilesModule],
imports: [AuthModule],
exports: [StudentsService],
})
export class StudentsModule {}
4 changes: 1 addition & 3 deletions src/modules/students/students.service.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import { FilesService } from "./../files/files.service";
import { ReviewerRoleQuery, UpdateReviewerQueryDto } from "./dtos/update-reviewer-query-dto";
import { ThesisInfoQueryDto, ThesisQueryType } from "./dtos/thesis-info-query.dto";
import {
Expand Down Expand Up @@ -30,8 +29,7 @@ import { UpdateSystemDto } from "./dtos/update-system.dto";
export class StudentsService {
constructor(
private readonly prismaService: PrismaService,
private readonly authService: AuthService,
private readonly fileService: FilesService
private readonly authService: AuthService
) {}

// 학생 생성 API
Expand Down

0 comments on commit 117bcc0

Please sign in to comment.