mirror of
https://github.com/serverless/serverless.git
synced 2025-12-08 19:46:03 +00:00
16 lines
275 B
Python
16 lines
275 B
Python
import json
|
|
|
|
|
|
def hello(event, context):
|
|
body = {
|
|
"message": "Go Serverless v1.0! Your function executed successfully!",
|
|
"input": event['data']
|
|
}
|
|
|
|
response = {
|
|
"statusCode": 200,
|
|
"body": json.dumps(body)
|
|
}
|
|
|
|
return response
|