mirror of
https://github.com/serverless/serverless.git
synced 2025-12-08 19:46:03 +00:00
15 lines
240 B
Python
15 lines
240 B
Python
import json
|
|
|
|
|
|
def handler(event, context):
|
|
body = {
|
|
"message": "Hello, world! Your function executed successfully!",
|
|
}
|
|
|
|
response = {
|
|
"statusCode": 200,
|
|
"body": json.dumps(body)
|
|
}
|
|
|
|
return response
|