6 lines
161 B
Python
6 lines
161 B
Python
import json
|
|
def handler(event, context):
|
|
# Log the event argument for debugging and for use in local development.
|
|
print(json.dumps(event))
|
|
|
|
return {} |