minecraft-servers/python-function/handler.py
2025-11-22 22:10:09 -06:00

8 lines
175 B
Python

def handle(req):
"""handle a request to the function
Args:
req (str): request body
"""
# print("Hello! You said: " + req)
return {"message": req}