5 lines
163 B
TypeScript
5 lines
163 B
TypeScript
|
|
import { Injectable } from '@nestjs/common';
|
||
|
|
import { AuthGuard } from '@nestjs/passport';
|
||
|
|
|
||
|
|
@Injectable()
|
||
|
|
export class LocalAuthGuard extends AuthGuard('local') {}
|