From 47ab520b993e7ad4a6d29c510043e0927463cd43 Mon Sep 17 00:00:00 2001 From: siwonpada Date: Sun, 10 Mar 2024 14:50:24 +0900 Subject: [PATCH] fix: module error --- src/app.module.ts | 2 -- src/idp/idp.module.ts | 4 ++-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/src/app.module.ts b/src/app.module.ts index d906ed8..154180b 100644 --- a/src/app.module.ts +++ b/src/app.module.ts @@ -2,7 +2,6 @@ import { Module } from '@nestjs/common'; import { AppController } from './app.controller'; import { ConfigModule } from '@nestjs/config'; import { GroupModule } from './group/group.module'; -import { MemberModule } from './member/member.module'; import { UserModule } from './user/user.module'; import { RoleModule } from './role/role.module'; import { IdpModule } from './idp/idp.module'; @@ -13,7 +12,6 @@ import { IdpModule } from './idp/idp.module'; envFilePath: '.env', }), GroupModule, - MemberModule, UserModule, RoleModule, IdpModule, diff --git a/src/idp/idp.module.ts b/src/idp/idp.module.ts index 695c241..24d8bd4 100644 --- a/src/idp/idp.module.ts +++ b/src/idp/idp.module.ts @@ -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], })