Skip to content

Commit

Permalink
fix: 잘못된 초기화 방지
Browse files Browse the repository at this point in the history
  • Loading branch information
flydog98 committed Dec 18, 2023
1 parent 95b88cf commit 4fefe38
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions packages/backend/src/app.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,6 @@ import { LoggingInterceptor } from './common/logging.interceptor';
import { QuizWizardModule } from './quiz-wizard/quiz-wizard.module';
import { AiModule } from './ai/ai.module';
import { CommandModule } from './command/command.module';
import { ContainersModule } from './containers/containers.module';
import { ContainersService } from './containers/containers.service';

@Module({
imports: [
Expand Down Expand Up @@ -46,7 +44,6 @@ import { ContainersService } from './containers/containers.service';
QuizWizardModule,
AiModule,
CommandModule,
ContainersModule,
],
controllers: [AppController],
providers: [
Expand All @@ -55,7 +52,6 @@ import { ContainersService } from './containers/containers.service';
provide: 'APP_INTERCEPTOR',
useClass: LoggingInterceptor,
},
ContainersService,
],
})
export class AppModule {}

0 comments on commit 4fefe38

Please sign in to comment.