mirror of
https://github.com/serverless/serverless.git
synced 2026-01-18 14:58:43 +00:00
13 lines
209 B
Python
13 lines
209 B
Python
import json
|
|
import os
|
|
|
|
|
|
def handler(event, context):
|
|
return {
|
|
"statusCode": 200,
|
|
"body": json.dumps({
|
|
"message": "Invoked",
|
|
"env": dict(os.environ)
|
|
})
|
|
}
|