diff --git a/src/auth/auth.module.ts b/src/auth/auth.module.ts index a0f0448..18473ee 100644 --- a/src/auth/auth.module.ts +++ b/src/auth/auth.module.ts @@ -4,7 +4,7 @@ import { JwtModule } from '@nestjs/jwt'; import { PassportModule } from '@nestjs/passport'; import { TypeOrmModule } from '@nestjs/typeorm'; import { UserInfo } from 'src/entities/user-info.entity'; -import { GoogleModule } from 'src/google-api/google-api.module'; +import { GoogleApiModule } from 'src/google-api/google-api.module'; import { Auth42Controller } from './auth.controller'; import { AuthService } from './auth.service'; import { AuthRepository } from './repository/auth.repository'; @@ -21,7 +21,7 @@ const repo = { @Module({ imports: [ TypeOrmModule.forFeature([UserInfo]), - GoogleModule, + GoogleApiModule, PassportModule, JwtModule.registerAsync({ useFactory: async (configService: ConfigService) => ({ diff --git a/src/google-api/google-api.module.ts b/src/google-api/google-api.module.ts index 0b5b730..b2812f1 100644 --- a/src/google-api/google-api.module.ts +++ b/src/google-api/google-api.module.ts @@ -5,4 +5,4 @@ import { GoogleApi } from './google-api.component'; providers: [GoogleApi], exports: [GoogleApi], }) -export class GoogleModule {} +export class GoogleApiModule {}