mirror of
https://github.com/AmruthPillai/Reactive-Resume.git
synced 2025-11-16 17:51:43 +10:00
6 lines
169 B
TypeScript
6 lines
169 B
TypeScript
import { Injectable } from "@nestjs/common";
|
|
import { AuthGuard } from "@nestjs/passport";
|
|
|
|
@Injectable()
|
|
export class TwoFactorGuard extends AuthGuard("two-factor") {}
|