5 lines
106 B
Python
5 lines
106 B
Python
def handler(event, context):
|
|
return {
|
|
"statusCode": 200,
|
|
"body": "Hello, World!"
|
|
} |