mirror of
https://gitee.com/yudaocode/yudao-ui-admin-vben.git
synced 2025-12-30 02:22:25 +00:00
6 lines
164 B
TypeScript
6 lines
164 B
TypeScript
|
|
import { Injectable } from '@nestjs/common';
|
||
|
|
import { AuthGuard } from '@nestjs/passport';
|
||
|
|
|
||
|
|
@Injectable()
|
||
|
|
export class LocalAuthGuard extends AuthGuard('local') {}
|