You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
517 B
15 lines
517 B
2 years ago
|
import { Module } from '@nestjs/common'
|
||
|
import { UsersModule } from 'src/users/users.module'
|
||
|
import { PassportModule } from '@nestjs/passport'
|
||
|
import { ConfigService } from '@nestjs/config'
|
||
|
import { AuthController } from './auth.controller'
|
||
|
import { FtStrategy } from './42.strategy'
|
||
|
import { SessionSerializer } from './session.serializer'
|
||
|
|
||
|
@Module({
|
||
|
imports: [UsersModule, PassportModule],
|
||
|
providers: [ConfigService, FtStrategy, SessionSerializer],
|
||
|
controllers: [AuthController]
|
||
|
})
|
||
|
export class AuthModule {}
|