parent
4a2c479879
commit
13ee297d06
2 changed files with 10 additions and 1 deletions
@ -0,0 +1,9 @@ |
|||||||
|
import { Module } from '@nestjs/common'; |
||||||
|
import { JwtService } from '@nestjs/jwt'; |
||||||
|
import { JwtAuthGuard } from './auth.guard';
|
||||||
|
|
||||||
|
@Module({ |
||||||
|
providers: [JwtService, JwtAuthGuard], |
||||||
|
exports: [JwtService, JwtAuthGuard],
|
||||||
|
}) |
||||||
|
export class AuthModule {} |
Loading…
Reference in new issue