Skip to content

Commit

Permalink
config: Configure app.module.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
dinushchathurya committed Jan 15, 2022
1 parent 8b802fe commit 41afd33
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions src/app.module.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
import { Module } from '@nestjs/common';
import { AppController } from './app.controller';
import { AppService } from './app.service';
import { AuthModule } from './auth/auth.module';
import { ConfigModule } from '@nestjs/config';

Expand All @@ -11,7 +9,7 @@ import { ConfigModule } from '@nestjs/config';
isGlobal: true,
}),
],
controllers: [AppController],
providers: [AppService],
controllers: [],
providers: [],
})
export class AppModule {}

0 comments on commit 41afd33

Please sign in to comment.