From e0fb48044dfe306fbc19d870276edb4e8ddff213 Mon Sep 17 00:00:00 2001 From: Janderson Souza Matias Date: Mon, 15 Jan 2024 20:16:55 -0300 Subject: [PATCH] lint --- src/modules/auth/service/index.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/modules/auth/service/index.ts b/src/modules/auth/service/index.ts index d6ace11..088509a 100644 --- a/src/modules/auth/service/index.ts +++ b/src/modules/auth/service/index.ts @@ -3,15 +3,13 @@ import config from "../../../config"; import { constants } from "http2"; import jwt from "jsonwebtoken"; import UnauthorizedException from "../../helpers/errors/unauthorized-exception"; -import InternalServerError from "../../helpers/errors/internal-server-error"; import { User } from "../../user/entity/user.entity"; import dataSource from "../../../database/config/ormconfig"; import { LogsService } from "../../logs/service"; -import { Coach } from "../../coach/entity/coach.entity"; import sgMail from "@sendgrid/mail"; import { OTP_EMAIL } from "./template-email"; import { Otp } from "../entity/otp.entity"; -import { LessThan, MoreThan } from "typeorm"; +import { MoreThan } from "typeorm"; const { HTTP_STATUS_INTERNAL_SERVER_ERROR, HTTP_STATUS_UNAUTHORIZED } = constants;