mirror of
https://github.com/Tria-plc/edr-platform.git
synced 2026-08-27 23:40:56 +00:00
6 lines
156 B
TypeScript
6 lines
156 B
TypeScript
import { Injectable } from '@nestjs/common';
|
|
import { AuthGuard } from '@nestjs/passport';
|
|
|
|
@Injectable()
|
|
export class JwtGuard extends AuthGuard('jwt') {}
|