12 lines
363 B
TypeScript
12 lines
363 B
TypeScript
import { Module } from '@nestjs/common';
|
|
import { PassportModule } from '@nestjs/passport';
|
|
import { JwtStrategy } from './jwt.strategy';
|
|
import { JwtAuthGuard } from './jwt-auth.guard';
|
|
|
|
@Module({
|
|
imports: [PassportModule.register({ defaultStrategy: 'jwt' })],
|
|
providers: [JwtStrategy, JwtAuthGuard],
|
|
exports: [JwtAuthGuard],
|
|
})
|
|
export class AuthModule {}
|