fix fastapi endPoints "/"

This commit is contained in:
2025-12-07 21:15:01 +03:00
parent b8f54f9871
commit beb29e3dd7
2 changed files with 6 additions and 2 deletions
+2 -2
View File
@@ -41,7 +41,7 @@ async def post_requests(
return response
@router.post("/action", summary="Запрос на перемещение инструмента")
@router.post("/action/", summary="Запрос на перемещение инструмента")
async def post_requests(
request_data: dict = Depends(requestDict),
):
@@ -109,7 +109,7 @@ async def post_requests(
return resonse
@router.post("/toolkit", summary="Запрос остатка инструмента")
@router.post("/toolkit/", summary="Запрос остатка инструмента")
async def toolkit_request(
request_data: dict = Depends(requestDict),
):