4 lines
77 B
Python
4 lines
77 B
Python
|
import json
|
||
|
|
||
|
def lambda_handler(event, context):
|
||
|
print(json.dumps(event))
|