webhook/backend.py
2023-02-22 20:12:13 +01:00

9 lines
243 B
Python

"""
Here you can perform your actions, depending on the information given in the
data dictionary. The returned string will be the plain-text body of the response
to the web-hook request.
"""
def handle_data(data: dict) -> str:
return "Done"