feat: add generic formatter that will just return json sent

This commit is contained in:
Alex Kelly 2021-11-09 01:41:26 -05:00
parent 93f84859b4
commit e0a407acd9

View file

@ -0,0 +1,4 @@
def formatter(data, headers):
"""Just dump the json data"""
data["body"] = f"{data}"
return data