samgis / src /app.py
aletrn's picture
[feat] revert to aws lambda - wip
243f395
raw
history blame
195 Bytes
import json
import logging
def lambda_handler(event, context):
logging.debug(f"event:{event}...")
logging.debug(f"context:{context}...")
return {"msg": f"ciao{json.dumps(event)}."}