| main.py | ||
| README.md | ||
| requirements.txt | ||
logging.info(f"Function called with request: {request}")
data = request.get_json(force=True)
logging.info(f"Received data: {data}") return {"result": data.get("a", 0)+data.get("b", 0)}# python hello-world
| main.py | ||
| README.md | ||
| requirements.txt | ||
logging.info(f"Function called with request: {request}")
data = request.get_json(force=True)
logging.info(f"Received data: {data}") return {"result": data.get("a", 0)+data.get("b", 0)}# python hello-world