Skip to content

Commit

Permalink
fix: 모듈 import 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
jjeonghak committed Nov 18, 2024
1 parent 625dbd2 commit dd52429
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion apps/server/src/app.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import { TypeOrmModule } from '@nestjs/typeorm';
import { DataSource, DataSourceOptions } from 'typeorm';
import { ConfigModule } from '@nestjs/config';
import { APP_FILTER, APP_INTERCEPTOR, APP_PIPE } from '@nestjs/core';
import { EventEmitterModule } from '@nestjs/event-emitter';
import { TaskModule } from '@/task/task.module';
import { TypeormConfig } from '../config/typeorm.config';
import { AppService } from '@/app.service';
Expand All @@ -11,7 +12,6 @@ import { HttpLoggingInterceptor } from '@/common/httpLog.Interceptor';
import { AllExceptionsFilter } from '@/common/allException.filter';
import { AccountModule } from '@/account/account.module';
import { ProjectModule } from '@/project/project.module';
import { EventEmitterModule } from '@nestjs/event-emitter';

@Module({
imports: [
Expand Down
4 changes: 2 additions & 2 deletions apps/server/src/project/project.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ import { Account } from '@/account/entity/account.entity';
import { Task } from '@/task/domain/task.entity';
import { ProjectsController } from '@/project/controller/projects.controller';
import { Section } from '@/task/domain/section.entity';
import { TaskService } from '@/task/service/task.service';
import { TaskModule } from '@/task/task.module';

@Module({
imports: [TypeOrmModule.forFeature([Project, Contributor, Account, Task, Section]), TaskService],
imports: [TypeOrmModule.forFeature([Project, Contributor, Account, Task, Section]), TaskModule],
controllers: [ProjectController, ProjectsController],
providers: [ProjectService],
})
Expand Down

0 comments on commit dd52429

Please sign in to comment.