6 lines
160 B
TypeScript
6 lines
160 B
TypeScript
|
|
import { Injectable } from '@nestjs/common';
|
||
|
|
import { AuthGuard } from '@nestjs/passport';
|
||
|
|
|
||
|
|
@Injectable()
|
||
|
|
export class JwtAuthGuard extends AuthGuard('jwt') {}
|