Skip to content

Commit

Permalink
refactor: erase unused import
Browse files Browse the repository at this point in the history
  • Loading branch information
JonghunAn committed Jun 29, 2024
1 parent 2dcfb89 commit 4973875
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/modules/users/guards/strategy/jwt.strategy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { ExtractJwt, Strategy } from 'passport-jwt';
import { JWT_STRATEGY_TOKEN } from './strategy.token';
import { Injectable, UnauthorizedException } from '@nestjs/common';
import { InjectModel } from '@nestjs/mongoose';
import { Model, Types } from 'mongoose';
import { Model } from 'mongoose';
import { ConfigService } from '@nestjs/config';
import { JwtPayload, ReqUserPayload } from '@src/common/types/type';
import { User } from '@src/infrastructure';
Expand Down

0 comments on commit 4973875

Please sign in to comment.