From 5d348d41656528ab8ab5a4df72227ad4f5514833 Mon Sep 17 00:00:00 2001
From: nostrdev-com <support@nostrdev.com>
Date: Thu, 27 Mar 2025 11:51:35 +0300
Subject: [PATCH] chore: fix linting issues

---
 src/routes/users.router.ts | 1 +
 1 file changed, 1 insertion(+)

diff --git a/src/routes/users.router.ts b/src/routes/users.router.ts
index 698a642..b7e6b29 100644
--- a/src/routes/users.router.ts
+++ b/src/routes/users.router.ts
@@ -14,6 +14,7 @@ usersRouter.get('/', async (_req: Request, res: Response) => {
     const users = await collections.users?.find({}).toArray()
 
     res.status(200).send(users)
+    // eslint-disable-next-line @typescript-eslint/no-explicit-any
   } catch (error: any) {
     res.status(500).send(error.message)
   }