c5ed65a4038241b39fe0c0b8727.../README.md
2025-04-30 16:57:09 +00:00

11 lines
282 B
Markdown

, format='%(asctime)s - %(levelname)s - %(message)s')
def main(request):
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