From d7e0ca01dbb9f3c2707a73b82e5764569169341a Mon Sep 17 00:00:00 2001 From: sazamansari Date: Thu, 10 Aug 2023 16:41:38 +0000 Subject: [PATCH] Prettified Code! --- README.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index f9cff40d..c7533877 100644 --- a/README.md +++ b/README.md @@ -278,8 +278,8 @@ Please adhere to this project's `code of conduct`. ```jsx // Import necessary modules and routes -import CONSTANTS from '../constants/index.js'; -import UserRoutes from '../modules/user/user.routes'; +import CONSTANTS from "../constants/index.js"; +import UserRoutes from "../modules/user/user.routes"; /** * Configure routes for the Express.js app. @@ -296,7 +296,6 @@ const configureRoutes = (app) => { // Export the configureRoutes function for usage export default configureRoutes; - ```

(Back to top)