Skip to content

Commit

Permalink
google -> googleApi
Browse files Browse the repository at this point in the history
  • Loading branch information
niamu01 committed Dec 8, 2023
1 parent c4768bb commit 43236b0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/auth/auth.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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';
Expand All @@ -21,7 +21,7 @@ const repo = {
@Module({
imports: [
TypeOrmModule.forFeature([UserInfo]),
GoogleModule,
GoogleApiModule,
PassportModule,
JwtModule.registerAsync({
useFactory: async (configService: ConfigService) => ({
Expand Down
2 changes: 1 addition & 1 deletion src/google-api/google-api.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ import { GoogleApi } from './google-api.component';
providers: [GoogleApi],
exports: [GoogleApi],
})
export class GoogleModule {}
export class GoogleApiModule {}

0 comments on commit 43236b0

Please sign in to comment.