diff --git a/main.py b/main.py index 721bbad..c209e72 100644 --- a/main.py +++ b/main.py @@ -84,13 +84,13 @@ async def fastapi_unlock_project(network: str): # undo/redo @app.post("/undo/") async def fastapi_undo(network: str): - undo(network) + execute_undo(network) return True @app.post("/redo/") async def fastapi_redo(network: str): - redo(network) + execute_redo(network) return True