9 lines
243 B
Python
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"
|