From c3426e0fe7e4b83aa2bb02cce81c548456933381 Mon Sep 17 00:00:00 2001 From: Mathias Wagner Date: Sun, 15 Jan 2023 20:31:45 +0100 Subject: [PATCH] Updated the file alias in the account.ts router --- src/routes/v1/account.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/routes/v1/account.ts b/src/routes/v1/account.ts index 24b3654..6b10b08 100644 --- a/src/routes/v1/account.ts +++ b/src/routes/v1/account.ts @@ -1,7 +1,7 @@ import { Request, Response, Router } from "express"; import { validateSchema } from "@utils/error"; import { registerValidation, verificationValidation } from "./validations/account"; -import { createAccount, verifyAccount } from "../../controller/account"; +import { createAccount, verifyAccount } from "@controller/account"; const app: Router = Router();