remove unused imports

This commit is contained in:
faris Aljohari
2024-10-07 18:28:06 -05:00
parent a01e27a271
commit 69d2aece43
3 changed files with 0 additions and 5 deletions

View File

@ -3,7 +3,6 @@ import {
BadRequestException,
ForbiddenException,
Injectable,
UnauthorizedException,
} from '@nestjs/common';
import { UserSignUpDto } from '../dtos/user-auth.dto';
import { HelperHashService } from '../../../libs/common/src/helper/services';
@ -19,7 +18,6 @@ import * as argon2 from 'argon2';
import { differenceInSeconds } from '@app/common/helper/differenceInSeconds';
import { LessThan, MoreThan } from 'typeorm';
import { ConfigService } from '@nestjs/config';
import { UUID } from 'typeorm/driver/mongodb/bson.typings';
@Injectable()
export class UserAuthService {