Skip to content

Commit

Permalink
Merge pull request #5 from gsainfoteam/1-psw
Browse files Browse the repository at this point in the history
fix: module error
  • Loading branch information
siwonpada authored Mar 10, 2024
2 parents 3eec10b + 47ab520 commit 09a1d90
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/idp/idp.module.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import { Module } from '@nestjs/common';
import { IdpService } from './idp.service';
import { HttpService } from '@nestjs/axios';
import { HttpModule } from '@nestjs/axios';
import { ConfigModule } from '@nestjs/config';

@Module({
imports: [HttpService, ConfigModule],
imports: [HttpModule, ConfigModule],
providers: [IdpService],
exports: [IdpService],
})
Expand Down

0 comments on commit 09a1d90

Please sign in to comment.