wagerkit / backend /src /auth /jwt-auth.guard.ts
saadrizvi09
init
b2806e8
raw
history blame contribute delete
160 Bytes
import { Injectable } from '@nestjs/common';
import { AuthGuard } from '@nestjs/passport';
@Injectable()
export class JwtAuthGuard extends AuthGuard('jwt') {}