From d095a7d67098b344054d63b3efb49d7ff979f96b Mon Sep 17 00:00:00 2001 From: DingZQ Date: Sat, 15 Oct 2022 17:28:39 +0800 Subject: [PATCH] Print payload --- main.py | 1 + 1 file changed, 1 insertion(+) diff --git a/main.py b/main.py index d4fb2d8..c617817 100644 --- a/main.py +++ b/main.py @@ -98,6 +98,7 @@ async def fastapi_sync_with_server(network: str, operationid: int) -> ChangeSet: @app.post("/batch/") async def fastapi_execute_batch_commands(network: str, payload: dict = Body(...)) -> ChangeSet: + print(payload) cs = ChangeSet({}) return api.execute_batch_commands(network, cs)