Model/backend/pashub_fetcher/handler/test_handler.py
2026-03-25 14:12:38 +00:00

7 lines
175 B
Python

from typing import Any, Mapping
import json
def handler(event: Mapping[str, Any], context: Any) -> None:
print("Received event:")
print(json.dumps(event, indent=2))