Skip to content

Commit

Permalink
fix: disable card payments module
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexanderBabel committed Jun 10, 2022
1 parent c2dd235 commit d89bd62
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/app.module.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
import { Module } from '@nestjs/common';
import { CardPaymentsModule } from './card-payments/card-payments.module';
import { HealthCheckModule } from './health-check/health-check.module';
import { MailModule } from './mail/mail.module';

@Module({
imports: [HealthCheckModule, MailModule, CardPaymentsModule],
imports: [HealthCheckModule, MailModule],
controllers: [],
providers: [],
})
Expand Down

0 comments on commit d89bd62

Please sign in to comment.