From d10c3fded823c7b0b7089e2d97687ad1bfd796e1 Mon Sep 17 00:00:00 2001 From: saracalihan Date: Thu, 11 May 2023 18:34:37 +0300 Subject: [PATCH] ErrorHandler path typo fixed --- dev-kit/app/v1/init.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-kit/app/v1/init.ts b/dev-kit/app/v1/init.ts index 2d40bb9..1e5ab0e 100644 --- a/dev-kit/app/v1/init.ts +++ b/dev-kit/app/v1/init.ts @@ -1,5 +1,5 @@ import { Express } from "express"; -import ErrorHandler from "./Handlers/ErrorHandler."; +import ErrorHandler from "./Handlers/ErrorHandler"; const onBeforeInit = async (app: Express) => {};