matrix-webhook/matrix_webhook/formatters/generic.py

4 lines
109 B
Python

def formatter(data, headers):
"""Just dump the json data"""
data["body"] = f"{data}"
return data