mirror of
https://github.com/Hestia-Homes/Model.git
synced 2026-06-08 11:17:27 +00:00
7 lines
175 B
Python
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))
|