From 96dbc744d71bd980a22944490764e677aba0e71c Mon Sep 17 00:00:00 2001 From: TheNoxium Date: Fri, 23 May 2025 12:48:09 +0500 Subject: [PATCH] feat: add query params --- api/api/endpoints/account.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/api/api/endpoints/account.py b/api/api/endpoints/account.py index 0700ae9..710a8b1 100644 --- a/api/api/endpoints/account.py +++ b/api/api/endpoints/account.py @@ -34,8 +34,8 @@ api_router = APIRouter( async def get_all_account( request: Request, - page: int = 3, - limit: int = 10, + page: int , + limit: int , connection: AsyncConnection = Depends(get_connection_dep) ):