207 B
207 B
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