feat: add query params

This commit is contained in:
TheNoxium 2025-05-23 12:48:09 +05:00
parent e47e449a36
commit 96dbc744d7

View File

@ -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)
):