piermesh/src/Sponge/Protocols/catch.py

17 lines
475 B
Python

async def filter(completeMessage, recipient, recipientNode, todo):
m = completeMessage
# TODO: Sending to other nodes clients
todo.append(
{
"action": "sendCatch",
"data": {
"toLocal": True,
"recipientNode": recipientNode,
"recipient": recipient,
"head": m["head"],
"body": m["body"],
"fins": m["fins"],
},
}
)