chore: initial project scaffold: backend/src/auth/jwt-auth.guard.ts

This commit is contained in:
2026-04-22 05:33:41 +00:00
parent 1a25ff4d7d
commit d37a0a57ae

View File

@@ -0,0 +1,5 @@
import { Injectable } from '@nestjs/common';
import { AuthGuard } from '@nestjs/passport';
@Injectable()
export class JwtAuthGuard extends AuthGuard('jwt') {}