Print operations

This commit is contained in:
DingZQ
2022-10-21 19:59:59 +08:00
parent 77d0a5f91e
commit 2f474b160f

View File

@@ -105,6 +105,10 @@ async def fastapi_execute_batch_commands(network: str, req: Request)-> ChangeSet
jo_root = await req.json()
cs: ChangeSet = ChangeSet()
cs.operations = jo_root['operations']
print(cs.operations)
print(cs)
return execute_batch_commands(network, cs)
# node