@arsendoman/book-publisher-store
Version:
A Nest.js package for book publishing and storing
35 lines (33 loc) • 1.29 kB
text/typescript
import { AuthService } from 'src/application/auth/services/auth.service';
import { Module } from '@nestjs/common';
import { HashHelper } from 'src/application/auth/helper/hash';
import { PassportModule } from '@nestjs/passport';
import { GoogleAuthService } from 'src/application/auth/services/google.auth.service';
import { GoogleAuthController } from '../controllers/google.auth.controller';
import { GoogleStrategy } from 'src/application/auth/strategy/google.strategy';
import { DataServiceModule } from '../../../dataservices/data-service.module';
import { ConfigService } from '../../../configuration/config.service';
export class GoogleAuthModule {}