281d53cfe49e4528a9cc2577dc4.../README.md
2025-04-30 16:37:07 +00:00

11 lines
283 B
Markdown

O, 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